.elementor-29753 .elementor-element.elementor-element-5c182eb{--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-29753 .elementor-element.elementor-element-95d50f7 > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for text-editor, class: .elementor-element-95d50f7 */.custom-post {
    /* Main Container Styling */
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}

/* Header Styling - For main post title */
.custom-post .post-header {
    background-color: #005b96;
    color: #ffffff;
    padding: 20px 15px;
    margin-bottom: 20px;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.custom-post .post-header h1 {
    margin: 0;
    font-size: 1.8em;
}

/* Main Content Wrapper Padding - REMOVED horizontal padding so cards span full width */
.custom-post .content-section {
    padding-left: 0;
    padding-right: 0;
}

/* New Card Styling for Sections */
.custom-post .card {
    background-color: #ffffff; /* White background for the card */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px; /* Internal padding for content spacing */
    margin-bottom: 25px; /* Space between cards */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    /* Set margins to 0 for full width on all screens */
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 768px) {
    /* On larger screens, the margins remain 0 from the base style */
    .custom-post .card {
        margin-left: 0;
        margin-right: 0;
    }
}


/* Section Heading Styling within the card */
.custom-post .card h2, .custom-post .card h3 {
    color: #003f63;
    border-bottom: 2px solid #e2f0fb;
    padding-bottom: 5px;
    margin-top: 0; /* Remove top margin from h2/h3 when at the start of card */
    margin-bottom: 15px;
    font-size: 1.4em;
    padding-left: 0;
    padding-right: 0;
}

/* General Content Spacing */
.custom-post p, .custom-post ul, .custom-post ol {
    margin-bottom: 15px;
}

/* Responsive Table Wrapper - adjust padding since card has padding */
.custom-post .card .responsive-table {
    overflow-x: auto;
    width: 100%;
    padding: 0; /* Card handles the main padding */
    margin-bottom: 20px;
}

.custom-post table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    margin: 0;
}

.custom-post th, .custom-post td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
    word-wrap: break-word;
}

/* Table Header Styling */
.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
    text-transform: uppercase;
}

/* The symbol-cell class is retained but the font size is the default/normal size */
.custom-post .card .responsive-table .symbol-cell {
    font-weight: bold; 
    text-align: center;
}


/* Notes Box Styling */
.custom-post .important {
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    padding: 15px;
    margin-top: 15px; /* Adjusted margin for card context */
    margin-bottom: 15px;
    font-size: 0.95em;
    padding-left: 20px;
}

/* Button Styling */
.custom-post .admission-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 10px auto; /* Slightly less vertical margin */
    padding: 12px 20px;
    background-color: #005b96;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
}

.custom-post .admission-button:hover {
    background-color: #003f63;
}

/* Footer Links Styling - Compacted */
.custom-post .footer-links {
    padding: 10px 15px; /* Reduced vertical padding */
    margin-top: 10px;
    border-top: 1px solid #ccc;
    background-color: #e2f0fb; /* Light background for contrast */
    font-size: 0.85em; /* Smaller font for compactness */
    text-align: center; /* Center footer content */
    border-radius: 0 0 8px 8px; /* Curve bottom edges if possible */
}

.custom-post .footer-links p {
    margin: 5px 0; /* Reduced margin below paragraphs */
}

.custom-post .footer-links .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 5px; /* Compact spacing between links */
    white-space: nowrap;
}

.custom-post .footer-links .contact-info a,
.custom-post .footer-links .contact-info span {
    margin: 0 5px; /* Compact spacing between links */
    white-space: nowrap;
}

/* Mobile Adjustments (Default styling is already mobile-first, but adding a breakpoint for larger screens) */
@media (min-width: 768px) {
    .custom-post .post-header h1 {
        font-size: 2.2em;
    }
    .custom-post .card h2, .custom-post .card h3 {
        font-size: 1.6em;
    }
    .custom-post .admission-button {
        max-width: 500px;
    }
}/* End custom CSS */