/* --- HEALTH PREVIEW SECTION --- */
.health-preview {
    padding: 20px 0px;
    background-color: #fff;
}

.health-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE */
.health-image {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    min-height: 300px;
}

.health-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT TEXT */
.health-text {
    flex: 1;
}

.health-title {
    font-family: 'EB Garamond', serif;
    font-size: 42px;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.health-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* BUTTON */
.btn-health {
    display: inline-block;
    background-color: #8c2388;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(140, 35, 136, 0.2);
}

.btn-health:hover {
    background-color: #6a1b66;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 35, 136, 0.3);
}

/* MOBILE */
@media (max-width: 992px) {
    .health-row {
        flex-direction: column;
    }

    .health-title {
        font-size: 32px;
    }
}