.elementor-27586 .elementor-element.elementor-element-296c46b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-27586 .elementor-element.elementor-element-04e8205 > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for text-editor, class: .elementor-element-04e8205 */<style>
/* 1. CSS Code 
    - Card Styling for Sections AND Ads (as requested)
    - Custom Color Theme
    - Full Responsiveness (Mobile-Friendly)
*/

/* --- Base Container Styling --- */
.custom-post {
    /* Ensures the main container doesn't affect outside components */
    box-sizing: border-box; 
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* --- Card Styling (Sections and Ads) --- */
.custom-post .section-card,
.custom-post .ad-card {
    background-color: white;
    padding: 20px;
    margin: 20px 0; /* 0px left/right margin, 20px top/bottom margin */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    /* Ensures fully responsive width */
    width: auto; 
    box-sizing: border-box;
}

/* --- Header Styling --- */
.custom-post header {
    background-color: #005b96; /* Header background: #005b96 */
    color: white;
    padding: 25px 20px;
    border-radius: 8px; /* Corner round */
    margin-bottom: 20px;
}
.custom-post header h1 {
    margin: 0;
    font-size: 1.8em;
    font-weight: bold;
    color: white; /* White text */
}
.custom-post header address {
    margin-top: 10px;
    font-style: normal;
    font-size: 0.9em;
    color: #e2f0fb; /* Lighter white for address */
}

/* --- Section Headings Styling --- */
.custom-post .section-card h2 {
    color: #003f63; /* Section headings: #003f63 */
    border-bottom: 2px solid #e2f0fb;
    padding-bottom: 8px;
    margin-top: 0;
    font-size: 1.5em;
}

/* --- Responsive Table Styling --- */
.custom-post .responsive-table {
    overflow-x: auto; /* Ensures horizontal scroll only if content overflows */
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto; /* Wraps long text naturally and adjusts column width */
    min-width: 600px; /* Minimum width for non-mobile view to prevent excessive squeezing */
}
/* Mobile-first approach: adjust table for smaller screens */
@media screen and (max-width: 600px) {
    .custom-post table {
        /* Allow for slight horizontal scroll on very narrow screens if min-width is hit */
        min-width: 100%;
    }
}


.custom-post table th, 
.custom-post table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    vertical-align: top;
    font-size: 0.95em;
}

.custom-post table th {
    background-color: #e2f0fb; /* Table headers: #e2f0fb */
    color: #003f63;
    font-weight: bold;
}

/* --- Important Notes Box Styling --- */
.custom-post .important {
    background-color: #fff3cd; /* Notes box: #fff3cd */
    border-left: 5px solid #ffca2c; /* Border-left #ffca2c */
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}
.custom-post .important strong {
    color: #856404; /* Darker color for note title/emphasis */
}

/* --- Lists Styling --- */
.custom-post ul, 
.custom-post ol {
    padding-left: 25px;
    margin: 15px 0;
}
.custom-post ul li, 
.custom-post ol li {
    margin-bottom: 8px;
}

/* --- Button Styling --- */
.custom-post .admission-button {
    display: block;
    width: fit-content;
    margin: 20px 0;
    padding: 12px 25px;
    background-color: #005b96;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.custom-post .admission-button:hover {
    background-color: #003f63;
}

/* --- Ad Card Styling --- */
.custom-post .ad-card {
    text-align: center;
    border-color: #ffca2c;
}
.custom-post .ad-card p {
    margin: 0; 
    font-size: 0.8em; 
    color: #888;
}

/* --- Footer Styling --- */
.custom-post footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}
.custom-post footer a {
    color: #005b96;
    text-decoration: none;
}
.custom-post footer a:hover {
    text-decoration: underline;
}
</style>/* End custom CSS */