/* =====================================
   BASIC RESET
===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #ffffff;
    overflow-x: hidden;
}

/* =====================================
   CONTAINER
===================================== */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* =====================================
   HERO SECTION – FULLY RESPONSIVE
===================================== */

.service-hero-banner-health {
    width: 100%;
    background-image: url("/images/heath-page-banner-1536x683.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;

    aspect-ratio: 16 / 7;
}

/* Tablet */
@media (max-width: 768px) {
    .service-hero-banner-health {
        aspect-ratio: 16 / 9;
        background-position: center top;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .service-hero-banner-health {
        aspect-ratio: 4 / 3;
        height: 160px;
        /* controlled mobile height */
        background-position: center;
    }
}


/* =====================================
   SERVICE CONTENT
===================================== */
.service-page-content {
    padding: 50px 0;
}

.service-page-content h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
}

.service-page-content .subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.service-page-content ul {
    list-style: disc inside;
    padding-left: 20px;
}

.service-page-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

/* Tablet */
@media (max-width: 768px) {
    .service-page-content {
        padding: 35px 15px;
    }

    .service-page-content h2 {
        font-size: 22px;
    }

    .service-page-content .subtitle {
        font-size: 14px;
    }

    .service-page-content li {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .service-page-content {
        padding: 25px 10px;
    }

    .service-page-content h2 {
        font-size: 20px;
    }

    .service-page-content ul {
        padding-left: 10px;
    }

    .service-page-content li {
        font-size: 13px;
        line-height: 1.6;
    }
}