h1 {
    font-size: 50px;
    color: #047067;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px;
    letter-spacing: -2px;
}

h2 {
    font-size: 39px;
    font-weight: 500;
    text-align: center;
    color: #333;
    letter-spacing: 0px;
}

.section-aia-1 p {
    font-size: 15px !important;
    color: #005c5c !important;
    line-height: 1.5 !important;
    margin: 0 auto !important;
    width: 90% !important;
}

/* --- 1. Base Setup --- */
.section-aia-plus-hero .slider-div .single-div {
    position: relative;
    width: 100%;
}

/* IMPORTANT: Set this to relative so the gradient stays inside this box */
.section-aia-plus-hero .slider-div .img-div {
    position: relative;
    width: 100%;
}

/* --- 2. The Gradient Overlay (Your Reference) --- */
.section-aia-plus-hero .slider-div .single-div.cta-banner .img-div::before {
    content: '';
    display: block;
    width: 60%;           /* Covers only the left 60% of the image */
    height: 100%;
    background: transparent linear-gradient(90deg, #00000099 0%, #00000080 78%, #00000000 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 20px;
}

.section-aia-plus-hero .slider-div .img-div img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* Image sits at z-index 0 by default */
}

/* Hide Mobile Image on Desktop */
.section-aia-plus-hero .mobile-only {
    display: none;
}

/* --- 3. Text Overlay --- */
.section-aia-plus-hero .slider-div .single-div .text-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 30px 60px;
    align-items: center;
    z-index: 10;          /* IMPORTANT: Sits ABOVE the gradient (z-index 1) */
}

.section-aia-plus-hero .slider-div .single-div .text-div .inner-div {
    width: 60%;
}

/* --- 4. Typography --- */
.section-aia-plus-hero .slider-div .single-div .text-div p {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 25px;
    /* Text shadow is less necessary now thanks to the gradient, but good to keep */
    text-shadow: 0 1px 4px rgba(0,0,0,0.5); 
}

/* --- 5. Buttons --- */
.section-aia-plus-hero .slider-div .single-div .text-div .link-div .btn {
    display: inline-block;
    background-color: #D5EFEC;
    color: #047067;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 40px;
    margin: 0 25px 15px 0;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.section-aia-plus-hero .slider-div .single-div .text-div .link-div .btn:hover {
    background-color: #047067;
    color: #D5EFEC;
}

/* --- 6. Mobile Responsiveness --- */
@media screen and (max-width: 767px) {
    /* Swap Images */
    .section-aia-plus-hero .desktop-only { display: none; }
    .section-aia-plus-hero .mobile-only { display: block; }
    
    .section-aia-plus-hero .slider-div .single-div.cta-banner .img-div::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: transparent linear-gradient(180deg, #00000099 0%, #00000080 78%, #00000000 100%) 0% 0% no-repeat padding-box;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        border-radius: 20px;
    }

    /* Adjust Layout */
    .section-aia-plus-hero .slider-div .single-div .text-div {
        padding: 30px 20px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .section-aia-plus-hero .slider-div .single-div .text-div .inner-div {
        width: 100%;
    }
    
    .section-aia-plus-hero .slider-div .single-div .text-div .link-div .btn {
        margin-right: 0;
        width: 100%;
        max-width: 300px;
    }
}

/* --- Container Scoping --- */
/* We target the widget class specifically inside your named section */
.section-aia-health-info .section-aia-steps {
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

/* --- Header Styling --- */
.section-aia-health-info .steps-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-aia-health-info .steps-header h4 {
    color: #047067; /* AIA Teal */
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-aia-health-info .steps-header h2 {
    color: #333;
    font-size: 36px;
    font-weight: 600;
    margin: 0;
}

/* --- Card Structure --- */
.section-aia-health-info .step-card {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    margin-right: 120px;
    min-height: 300px;
    max-width: 1000px;
}

/* --- Image Side --- */
.section-aia-health-info .step-card .step-image {
    flex: 1; 
    position: relative;
}

.section-aia-health-info .step-card .step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Content Side --- */
.section-aia-health-info .step-card .step-content {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-aia-health-info .step-card .step-content h3 {
    color: #222;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-aia-health-info .step-card .step-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* --- Alternating Layout (Zig-Zag) --- */
.section-aia-health-info .step-card.reverse {
    margin-bottom: 30px;
    margin-left: 120px;
    margin-right: 0;
    flex-direction: row-reverse;
}

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 767px) {
    .section-aia-health-info .steps-header h2 {
        font-size: 28px;
    }

    .section-aia-health-info .section-aia-steps {
        padding: 0px 10px;
    }

    .section-aia-health-info .step-card,
    .section-aia-health-info .step-card.reverse {
        flex-direction: column !important;
        height: auto;
        margin: auto 0;
        margin-bottom: 25px;
    }
    

    .section-aia-health-info .step-card .step-image {
        height: 250px;
        width: 100%;
    }

    .section-aia-health-info .step-card .step-content {
        padding: 30px 20px;
        text-align: left;
    }
}

/* --- Wrapper Spacing --- */
.section-aia-plus-whatsapp {
    padding: 50px 0;
}

.section-aia-plus-whatsapp .outer-div {
    padding: 0 40px;
}

/* --- Grey Content Box --- */
.section-aia-plus-whatsapp .content-div {
    background-color: #F4F4F4;
    border-radius: 25px;
    padding: 50px 35px;
}

/* --- Header with Icon --- */
.section-aia-plus-whatsapp .heading-div .inner-div {
    position: relative;
    display: inline-block;
    margin-bottom: 25px; /* Added spacing below header */
    width: 100%;
    text-align: center;
}

/* The WhatsApp Icon */
/* .section-aia-plus-whatsapp .heading-div .inner-div::before {
    content: '';
    display: inline-block;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg'); 
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 45px;
    height: 45px;
    position: absolute;
    right: 0;
    top: 5px; 
} */

.section-aia-plus-whatsapp .heading-div h2 {
    margin: 0 0 5px;
    font-size: 28px; /* Added font size for consistency */
    color: #333;
}

/* --- Table Styling --- */
.section-aia-plus-whatsapp .footable_parent {
    width: 100%;
}

/* Table Container & Borders */
.section-aia-plus-whatsapp .semantic_ui .ui.table {
    border: 1px solid #C9D4DE;
    border-radius: 25px;
    background-color: #F4F4F4; /* Matches background */
    overflow: hidden;
    padding: 20px 40px;
    width: 100%;
    border-collapse: separate; /* Required for border-radius on tables */
    border-spacing: 0;
}

/* Table Header */
.section-aia-plus-whatsapp .semantic_ui .ui.table thead th {
    background-color: #F4F4F4;
    font-size: 14px;
    font-weight: 700;
    color: #3B3B3B;
    border-top: none !important;
    padding: 15px 10px;
    text-align: left !important;
}

/* Hide extra borders often added by plugins */
.section-aia-plus-whatsapp .semantic_ui .ui.table thead .footable-filtering th {
    border-bottom: none !important;
}

/* Table Body Cells */
.section-aia-plus-whatsapp .semantic_ui .ui.table td {
    font-size: 15px;
    color: #3B3B3B;
    padding: 15px 10px;
    border-top: 1px solid #E0E0E0; /* Light separator lines */
}

/* Specific Column Widths */
.section-aia-plus-whatsapp .semantic_ui .ui.table tbody td.ninja_clmn_nm_state {
    width: 130px;
    font-weight: 600;
}

.section-aia-plus-whatsapp .semantic_ui .ui.table tbody td.ninja_clmn_nm_shop_now {
    width: 160px; /* Slightly wider for the button text */
    text-align: right;
}

/* --- Link/Button Styling inside Table --- */
.section-aia-plus-whatsapp .footable_parent table.foo-table.vertical_centered tbody > tr > td a,
.section-aia-plus-whatsapp .footable_parent table.foo-table.vertical_centered thead > tr > th a {
    text-decoration: none !important;
    font-size: 12px;
    color: #047067; /* AIA Teal */
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid #047067; /* Added border to make it look like a button */
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.section-aia-plus-whatsapp .footable_parent table.foo-table.vertical_centered tbody > tr > td a:hover {
    background-color: #047067;
    color: #ffffff;
}

/* Footer Paging Area */
.section-aia-plus-whatsapp .ninja_footable tfoot .footable-paging {
    background-color: #F4F4F4;
    padding: 10px;
}

/* --- Move Search Bar to the Right --- */

/* 1. Target the specific row that holds the search bar */
.section-aia-plus-whatsapp .footable-filtering th {
    /* Ensure the cell content allows right alignment */
    text-align: right !important; 
}

/* 2. Target the form container specifically */
.section-aia-plus-whatsapp .footable-filtering .form-inline {
    /* Use Flexbox to push content to the end (right) */
    display: flex !important;
    justify-content: flex-end !important;
    width: 100%;
}

/* Optional: Ensure the search input doesn't stretch too wide */
.section-aia-plus-whatsapp .footable-filtering-search .form-control {
    max-width: 300px; /* Adjust this width if you want it wider/narrower */
}

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 768px) {
    .section-aia-plus-whatsapp .outer-div {
        padding: 0 15px; /* Less padding on mobile */
    }
    
    .section-aia-plus-whatsapp .content-div {
        padding: 30px 20px;
    }

    .section-aia-plus-whatsapp .semantic_ui .ui.table {
        padding: 10px;
        border-radius: 15px;
    }
    
    /* Allow table to scroll horizontally if needed */
    .section-aia-plus-whatsapp .footable_parent {
        overflow-x: auto;
    }
}