.elementor-27045 .elementor-element.elementor-element-0f09b82{--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-27045 .elementor-element.elementor-element-b7d22d3 > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for text-editor, class: .elementor-element-b7d22d3 */<style>
/* 1. Custom Post Container (.custom-post) 
    2. Responsive, no margins/padding on the container, card-based for sections
*/
.custom-post {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Card Styling for each Section (Mandatory) 
    All sections (except the header) are given this styling.
*/
.custom-post section,
.custom-post .important {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 15px 0; /* Creates the card separation/margin between sections */
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    overflow-x: auto; /* Ensures section content is safe */
}

/* Header Styling 
    Header background: #005b96, white text, corner round
*/
.custom-post header {
    background-color: #005b96;
    color: white;
    padding: 25px 20px;
    border-radius: 8px;
    margin: 0 0 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-post header h1 {
    margin: 0 0 5px 0;
    font-size: 1.8em;
}

.custom-post header address {
    font-style: normal;
    font-size: 0.9em;
    opacity: 0.9;
}

/* Section Headings Styling 
    Section headings: #003f63
*/
.custom-post h2, .custom-post h3 {
    color: #003f63;
    border-bottom: 2px solid #e2f0fb;
    padding-bottom: 5px;
    margin-top: 0;
    font-size: 1.5em;
}

/* Table Styling (Responsive & Theme) 
    table-layout: auto, width: 100%, border-collapse: collapse
    Table headers: #e2f0fb
*/
.responsive-table {
    overflow-x: auto;
    width: 100%;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    min-width: 600px; /* Min width for readability on small screens */
}

.custom-post th, .custom-post td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
    word-wrap: break-word; /* Wrap long text naturally */
}

.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
    text-transform: uppercase;
}

/* Important Notes Box Styling 
    Notes box: #fff3cd with border-left #ffca2c
*/
.custom-post .important {
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    color: #664d03;
    padding: 15px;
}

.custom-post .important h3 {
    color: #664d03;
    border-bottom: 1px solid #ffca2c;
}

/* Button Styling (General)
*/
.custom-post .cta-button,
.custom-post .download-button {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 20px auto 20px 0;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

/* Primary CTA Button */
.custom-post .cta-button {
    background-color: #005b96;
    color: white;
}
.custom-post .cta-button:hover {
    background-color: #003f63;
}

/* Download Button Styling (New) */
.custom-post .download-button {
    background-color: #17a2b8; /* A light blue/cyan color */
    color: white;
    margin-top: 10px;
}
.custom-post .download-button:hover {
    background-color: #138496;
}

/* List Styling for Eligibility/Process 
*/
.custom-post ul, .custom-post ol {
    padding-left: 20px;
}

.custom-post li {
    margin-bottom: 10px;
}

/* Footer styling adjustment for buttons */
.custom-post footer {
    padding: 10px 20px;
}

/* Mobile-Friendly Adjustments (Full Responsiveness) 
*/
@media (max-width: 600px) {
    .custom-post header h1 {
        font-size: 1.5em;
    }

    .custom-post th, .custom-post td {
        padding: 10px;
        font-size: 0.9em;
    }
}
</style>/* End custom CSS */