/* --- Color Variables (Assuming your main variables are set) --- */
:root {
    --transition: all 0.3s ease;
}

/* ========================================
   FEATURE SERVICE BLOCK (AQUA THERAPY)
   ======================================== */

.service-feature-block {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-peach) 100%);
    /* Use the light aqua background */
}

.service-feature-block .section-title {
    line-height: 1.2;
}

.service-feature-block .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Slightly more space for content */
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Content Styling */
.feature-content {
    max-width: 100%;
    text-align: left;
}

.badge {
    margin-bottom: 1rem;
}

.section-title {
    margin: 0 0 .75rem;
    font-weight: 700;
}

.section-title:after {
    display: none;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* CTA Group */
.feature-cta-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Image Styling */
.feature-image-wrapper {
    position: relative;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}


/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .service-feature-block .container {
        padding: 0 0rem;
    }
}

@media (max-width: 992px) {
    .service-feature-block .container {
        grid-template-columns: 1fr;
        /* Stack content on smaller screens */
        gap: 40px;
    }

    .feature-image-wrapper {
        order: -1;
        height: 400px;
        /* Move image above text on mobile/tablet */
    }
}

@media (max-width: 768px) {
    .service-feature-block {
        padding: 4rem 2rem;
    }
}

@media (max-width: 640px) {
    .service-feature-block {
        padding: 3rem 1.5rem;
    }

    .feature-image-wrapper {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .feature-description {
        font-size: 1rem;
    }

    .feature-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}