.treatment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.feature-treatment {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    margin-bottom: 4rem;
}

.feature-text { flex: 1; }
.feature-text button { margin-top: 1rem; border: none; cursor: pointer; }

.feature-img-wrapper {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--brand-primary);
    box-shadow: 0 10px 30px rgba(4, 160, 67, 0.15);
    height: 350px;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.info-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
}

.info-card h3 {
    font-family: 'All Round Gothic', sans-serif;
    font-size: 1.6rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 1rem;
}

.info-block {
    margin-bottom: 1.5rem;
}

.info-label {
    font-weight: bold;
    color: var(--brand-dark);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-block p {
    color: var(--brand-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.info-card button {
    margin-top: auto;
    width: 100%;
    border: none;
    cursor: pointer;
}

.modal-overlay {
    display: none; 
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 1000; justify-content: center; align-items: center; padding: 1rem;
}

.modal-content {
    width: 100%; max-width: 500px; position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

.close-modal {
    position: absolute; top: 1.5rem; right: 2rem;
    font-size: 2rem; color: var(--brand-dark); cursor: pointer; line-height: 1;
}
.close-modal:hover { color: var(--brand-primary); }

@keyframes modalFadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
    .feature-treatment {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .feature-img-wrapper {
        width: 100%;
        height: 250px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 1.5rem;
    }
}