.wellness-outer-container {
    padding: 8rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.wellness-inner-wrapper {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* Header styling */
.wellness-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wellness-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.wellness-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
}

.wellness-intro {
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

/* Responsive Grid / Columns Layout */
.wellness-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.wellness-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Elegant Luxury Boxed Challenge Card (No Icons) */
.wellness-challenge-card {
    padding: 2.5rem 2rem;
    background-color: #1a362d;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.wellness-challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.wellness-challenge-text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Image wrapper */
.wellness-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.wellness-lifestyle-img {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Footer styling */
.wellness-footer {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.wellness-bottom-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
}

/* --- MOBILE RESPONSIVE STACKING ORDER --- */
@media (max-width: 900px) {
    .wellness-grid-container {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    /* Stack order on mobile:
       1. Heading, subtitle, intro paragraph (done by parent layout flow)
       2. Image
       3. Six challenge points (stacked left then right column)
       4. Bottom paragraph (done by parent layout flow)
    */
    .wellness-image-col {
        order: 1;
    }

    .wellness-left-col {
        order: 2;
        gap: 1.5rem;
    }

    .wellness-right-col {
        order: 3;
        gap: 1.5rem;
    }

    .wellness-outer-container {
        padding: 5rem 1.5rem;
    }

    .wellness-inner-wrapper {
        gap: 3.5rem;
    }

    .wellness-title {
        font-size: 2.25rem;
    }

    .wellness-intro {
        font-size: 1.05rem;
    }

    .wellness-challenge-text {
        font-size: 1.05rem;
    }

    .wellness-lifestyle-img {
        max-width: 100%;
    }
}
