.elementor-27572 .elementor-element.elementor-element-42df848{--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-27572 .elementor-element.elementor-element-c22fcf8 > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for text-editor, class: .elementor-element-c22fcf8 *//* General Reset and Container Styling */
.custom-post {
    max-width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrollbars */
    padding-left: 0;
    padding-right: 0;
}

/* Card Styling for Sections AND Ads */
.custom-post .section-card,
.custom-post .ad-card {
    background-color: white;
    /* Margin and Padding control for card */
    padding: 20px;
    margin: 20px 0; /* 0px left/right margin */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Header Styling */
.custom-post header {
    background-color: #005b96;
    color: white;
    padding: 25px 20px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 20px;
}

.custom-post header h1 {
    margin: 0;
    font-size: 1.8em;
    line-height: 1.2;
}

.custom-post header p {
    margin: 5px 0 0 0;
    font-size: 1em;
    color: #f0f0f0;
}

/* Section Heading Styling */
.custom-post h2, .custom-post h3, .custom-post h4 {
    color: #003f63;
    /* Section headings (H2/H3) should use the specific color */
    border-bottom: 2px solid #003f63;
    padding-bottom: 5px;
    margin-top: 25px;
    margin-bottom: 15px;
}
.custom-post h4 {
    border-bottom: 1px dashed #ccc;
    color: #333;
    font-size: 1.1em;
}

/* Table Styling */
.custom-post .responsive-table {
    overflow-x: auto; /* Ensures table is responsive for small screens */
    margin: 20px 0;
}

.custom-post table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto; /* Ensures natural text wrapping */
    font-size: 0.9em;
}

.custom-post th, .custom-post td {
    border: 1px solid #ddd;
    padding: 12px 10px;
    text-align: left;
    vertical-align: top;
}

/* Table Header Color */
.custom-post th {
    background-color: #e2f0fb;
    color: #003f63;
    font-weight: bold;
}

/* Important Notes Box Styling */
.custom-post .important {
    background-color: #fff3cd;
    border-left: 5px solid #ffca2c;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-style: italic;
}

.custom-post .important h3 {
    color: #856404; /* Darker text for visibility */
    border-bottom: none;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Button Styling (Main CTA) */
.custom-post .cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    padding: 15px 20px;
    background-color: #005b96;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s;
}

.custom-post .cta-button:hover {
    background-color: #003f63;
}

/* Ad Card Styling - UPDATED */
.custom-post .ad-card {
    border: 1px dotted #eeeeee; /* Updated border color and style */
    background-color: white; 
    text-align: center;
}

.custom-post .ad-card p {
    margin: 0; 
    font-size: 0.8em; 
    color: #888;
}

/* Footer Styling & Links */
.custom-post footer {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

.custom-post footer a {
    color: #005b96;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #005b96;
    border-radius: 4px;
    margin-top: 10px;
}

.custom-post footer a:hover {
    background-color: #e2f0fb;
}

/* Mobile Optimizations (Full Responsiveness) */
@media (max-width: 600px) {
    .custom-post header h1 {
        font-size: 1.5em;
    }

    .custom-post .section-card,
    .custom-post .ad-card {
        padding: 15px;
        margin: 15px 0;
    }

    .custom-post th, .custom-post td {
        padding: 10px 8px;
    }
}/* End custom CSS */