
/* ==========================================================================
   Subpages / Treatment Details
   ========================================================================== */
.subpage-hero {
    height: 60vh;
    min-height: 400px;
    padding-top: 90px;
}

.treatment-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.treatment-row:last-child {
    margin-bottom: 0;
}

.treatment-row.reverse {
    flex-direction: row-reverse;
}

.treatment-text {
    flex: 1;
}

.treatment-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.treatment-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--color-text-main);
    line-height: 1.7;
}

.treatment-image {
    flex: 1;
}

.treatment-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* Treatment Details Responsive */
@media (max-width: 992px) {
    .treatment-row {
        flex-direction: column-reverse;
        gap: 30px;
    }
    
    .treatment-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .treatment-text h2 {
        font-size: 1.8rem;
    }
}
