/* --- HAKKIMDA SAYFASI ANA DEĞİŞKENLERİ --- */
.about-page {
    background-color: #FAF6F0; /* Sayfanın ana bej/krem arka planı */
    color: #2b2b2b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding-bottom: 60px;
}

.about-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HERO BÖLÜMÜ --- */
.about-hero-section {
    padding: 70px 0 40px 0;
}

.acc-content p {
    transition: all 0.3s ease; /* Hareketin yumuşak olması için süre tanır */
    padding: 4px 8px;
    border-radius: 4px;
}

    .acc-content p:hover {
        transform: translateX(8px); /* Üzerine gelindiğinde sağa doğru hafifçe kaydırır */
        background-color: #f7f9fa; /* Hafif bir arka plan rengi verir (isteğe bağlı) */
        color: #2c3e50; /* Yazı rengini vurgular */
    }

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

.hero-main-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.hero-highlight {
    color: #1f382b; /* Zümrüt vurgu */
    font-weight: 700;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 16px;
}

/* Organik / Oval Çerçeveli Portre */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

.hero-blob-frame {
    width: 320px;
    height: 400px;
    border-radius: 50% 50% 48% 52% / 60% 60% 40% 40%; /* Görseldeki kavisli silüet */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(31, 56, 43, 0.08);
    border: 4px solid #ffffff;
}

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

/* --- FELSEFE BÖLÜMÜ (ORTALANMIŞ KART) --- */
.philosophy-section {
    padding: 30px 0;
}

.philosophy-card {
    background-color: #F4EDE2; /* Yumuşak kahvemsi bej ton */
    border-radius: 24px;
    padding: 45px 50px;
    text-align: center;
}

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

.philosophy-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #383838;
    max-width: 900px;
    margin: 0 auto 16px auto;
}

/* --- ÇALIŞMA ALANLARI (5'Lİ KART GRİDİ) --- */
.services-overview-section {
    padding: 50px 0;
}

.sub-heading-center {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.7rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 35px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.service-pill-card {
    background: #ffffff;
    padding: 24px 18px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    border: 1px solid #ECE3D4;
    display: block;
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .service-pill-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(31, 56, 43, 0.08);
        box-shadow: 0 12px 30px rgba(31, 56, 43, 0.12);
        color: inherit;
    }

.card-icon-wrap {
    width: 50px;
    height: 50px;
    background-color: #FAF4EB;
    color: #1f382b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px auto;
}

.service-pill-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #1f382b;
}

.service-pill-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

/* --- AKORDEON (YETKİNLİKLER) --- */
.qualifications-section {
    padding: 20px 0 50px 0;
}

.accordion-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acc-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #EBE4D8;
    overflow: hidden;
}

.acc-header {
    padding: 18px 22px;
    font-weight: 600;
    font-size: 1rem;
    color: #1f382b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}

    .acc-header::-webkit-details-marker {
        display: none;
    }

.acc-icon {
    font-size: 1.1rem;
    color: #8c7b64;
    transition: transform 0.2s ease;
}

.acc-item[open] .acc-icon {
    transform: rotate(180deg);
}

.acc-content {
    padding: 0 22px 18px 22px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
}

/* --- MOBİL VE TABLET UYUMLULUĞU (RESPONSIVE) --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-wrapper {
        order: -1;
        margin-bottom: 20px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 1.8rem;
    }

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

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

    .hero-blob-frame {
        width: 250px;
        height: 310px;
    }
}
