.elementor-31751 .elementor-element.elementor-element-dc6c8cf{--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 );}/* Start custom CSS for text-editor, class: .elementor-element-a7af0bf */.custom-post {
    /* Main container styling - enforces 0 left/right margin and padding for the entire block */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%; /* Ensure full responsiveness */
    overflow-x: hidden; /* Prevent horizontal scrollbar */
    box-sizing: border-box;
}

/* Styling for each card section (excluding the main header) */
.custom-post section:not(.header-card) {
    /* Card properties: white background, internal spacing, visual border */
    background-color: white;
    margin: 15px 0; /* Left and right margin is 0px */
    padding: 20px; /* Internal content padding */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow for card effect */
    border: 1px solid #eee; /* Light border for definition */
    box-sizing: border-box;
    width: 100%; /* Ensure card is full width */
}

/* Header styling (different background) */
.custom-post .header-card {
    background-color: #005b96;
    color: white;
    padding: 20px;
    border-radius: 8px; /* Corner round */
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
}

.custom-post .header-card h1 {
    margin: 0;
    font-size: 1.8em;
    line-height: 1.2;
}

/* Section headings style */
.custom-post h2, .custom-post h3, .custom-post h4 {
    color: #003f63; /* Section headings: #003f63 */
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-top: 0; /* Resetting margin inside the card */
    margin-bottom: 15px;
}

/* Fix for the first h2 in a section card */
.custom-post section:not(.header-card) h2:first-child,
.custom-post section:not(.header-card) h3:first-child {
    margin-top: 5px;
}


/* Table of Contents Styling */
.custom-post #toc {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 15px; /* Spacing within the card */
}

.custom-post #toc ul {
    list-style-type: none;
    padding-left: 0;
}

.custom-post #toc a {
    color: #005b96;
    text-decoration: none;
}

/* Table styling for responsiveness and theme */
.custom-post .responsive-table {
    overflow-x: auto; /* Allows table to scroll horizontally on small screens */
    width: 100%;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    margin-bottom: 20px;
}

.custom-post th, .custom-post td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

.custom-post 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;
    margin: 20px 0;
    border-radius: 4px;
}

/* List styling */
.custom-post ul, .custom-post ol {
    margin-left: 20px;
    padding-left: 0;
}

/* Button styling */
.custom-post .admission-button {
    display: block;
    width: fit-content;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #005b96;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

.custom-post .admission-button:hover {
    background-color: #003f63;
}

/* Footer styling */
.custom-post footer {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px 0;
    text-align: center;
}

/* Media query for mobile responsiveness */
@media (max-width: 600px) {
    .custom-post section:not(.header-card) {
        padding: 15px; /* Reduce internal padding on small screens */
    }
    .custom-post th, .custom-post td {
        padding: 8px;
        font-size: 0.9em;
    }
    .custom-post .header-card h1 {
        font-size: 1.5em;
    }
}/* End custom CSS */