/* ========== SERVICES PAGE ========== */
.service-section {
    padding: 60px 20px;
    background: #f8f8f8; /* light neutral background to match frontpage */
}

.service-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-image {
    flex: 0 0 300px; /* fixed image width */
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-content {
    flex: 1;
    text-align: justify; /* justified content */
}

.service-content h2 {
    font-size: 28px;
    color: #2B3A55; /* clinic navy, matching header/footer */
    font-weight: 700;
    margin-bottom: 15px;
}

.service-content .service-desc {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333; /* readable dark gray */
}

.service-list {
    list-style: none; /* remove default bullets */
    padding-left: 0; /* no extra padding */
    margin: 0;
}

.service-list li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative; /* keep original tick position if using ::before */
}

/* Hover effect for service image */
.service-image img:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .service-row {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .service-row {
        flex-direction: column;
        text-align: justify; /* justify text on mobile */
        align-items: center;
    }

    .service-image {
        flex: 1;
        max-width: 90%;
        margin-bottom: 20px;
    }

    .service-content h2 {
        font-size: 24px;
    }

    .service-content .service-desc {
        font-size: 16px;
    }

    .service-list li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .service-section {
        padding: 40px 15px;
    }

    .service-row {
        gap: 25px;
    }

    .service-image img {
        border-radius: 12px;
    }
}