/* Ana Kapsayıcı ve Renkler */
.therapy-page {
    background-color: #FAF6F0; /* Sayfanın genel sıcak krem tabanı */
    color: #2b2b2b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}

.therapy-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HERO ALANI --- */
.therapy-hero {
    /* Görseldeki pembe/pudra organik arka plan dalgası */
    background: radial-gradient(circle at 85% 30%, #F5E5DC 0%, #FAF6F0 60%);
    padding: 60px 0 50px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 50px;
}

.therapy-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.8rem;
    color: #1f382b; /* Zümrüt Yeşili */
    margin-bottom: 12px;
    font-weight: 600;
}

.therapy-subtitle {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    color: #2e2e2e;
    line-height: 1.35;
    margin-bottom: 24px;
    font-weight: 500;
}

.therapy-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 32px;
}

/* Koyu Yeşil Oval Hap Buton */
.btn-therapy-cta {
    display: inline-block;
    background-color: #1f382b;
    color: #FAF6F0;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(31, 56, 43, 0.2);
    transition: all 0.25s ease;
}

    .btn-therapy-cta:hover {
        background-color: #14251c;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(31, 56, 43, 0.3);
    }

/* Organik Maskelenmiş Görsel Çerçevesi */
.hero-visual {
    display: flex;
    justify-content: center;
}

.organic-image-mask {
    width: 100%;
    max-width: 500px;
    height: 540px;
    /* Görseldeki kıvrımlı yumuşak asimetrik kesim */
    border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(245, 229, 220, 0.6);
}

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

/* --- ÇALIŞMA KONULARI BÖLÜMÜ --- */
.topics-section {
    padding: 50px 0;
}

.section-heading {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.85rem;
    color: #1f382b;
    margin-bottom: 30px;
}

.topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
}

.topics-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Görseldeki Açık Bej Hap Şeklindeki Maddeler */
.topic-pill {
    background-color: #F6EFE6; /* Çok açık pudra/bej */
    padding: 14px 22px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

    .topic-pill:hover {
        background-color: #EFE4D6;
        transform: translateX(4px);
    }

.pill-bullet {
    color: #8c7b64;
    font-size: 0.85rem;
    font-weight: bold;
}

.pill-text {
    font-size: 0.95rem;
    color: #333333;
    font-weight: 500;
}

/* --- KİMLER İÇİN? (ALT ALAN) --- */
.audience-section {
    padding: 40px 0 70px 0;
}

.audience-card {
    /* Sağ alt köşeye doğru pudra erimesi */
    background: linear-gradient(135deg, #F9F1EB 0%, #F5E5DC 100%);
    border-radius: 28px;
    padding: 45px 50px;
    position: relative;
    overflow: hidden;
}

.audience-text-box {
    max-width: 650px;
}

.audience-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 26px;
}

/* --- RESPONSIVE DÜZENLEMELER --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 25px;
    }

    .organic-image-mask {
        height: 350px;
        max-width: 300px;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .therapy-title {
        font-size: 2.2rem;
    }

    .therapy-subtitle {
        font-size: 1.25rem;
    }

    .audience-card {
        padding: 30px 20px;
    }
}
