/* general-pages.css - Hakkımızda ve SSS Sayfaları */

.content-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Sayfa Başlığı */
.page-header-simple {
    text-align: center;
    margin-bottom: 60px;
}

.page-heading {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.page-subheading {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* HAKKIMIZDA */
.about-section {
    /* Flex özelliğini Bootstrap row yapısına bıraktık ama hizalama için */
    align-items: center; 
    margin-bottom: 80px;
}

.about-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

/* YENİ: DEĞERLER (İKONLAR) BÖLÜMÜ */
.values-wrapper {
    display: flex;
    flex-direction: column; /* Alt alta sırala */
    gap: 40px;
    align-items: center; /* Ortala */
    justify-content: center;
    padding: 40px;
    background-color: #fbfbfb; /* Çok hafif gri arka plan */
    border: 1px solid #eee;
}

.value-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #111; /* Siyah çember */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.value-icon-circle i {
    font-size: 32px;
    color: #111;
}

.value-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #111;
    margin: 0;
}

/* Hover Efekti */
.value-item:hover .value-icon-circle {
    background-color: #111;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.value-item:hover .value-icon-circle i {
    color: #fff;
}


/* SSS (FAQ) - Custom Accordion Styles */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.custom-accordion .accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.custom-accordion .accordion-button {
    background-color: transparent;
    color: #111;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 0;
    box-shadow: none !important; /* Bootstrap focus efektini kaldır */
    border: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    filter: grayscale(100%); /* Siyah beyaz ikon */
}

.custom-accordion .accordion-body {
    padding: 0 0 25px 0;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }
    .values-wrapper {
        flex-direction: row; /* Mobilde yan yana olsun */
        justify-content: space-around;
        padding: 20px;
        gap: 20px;
    }
    .value-icon-circle {
        width: 60px;
        height: 60px;
    }
    .value-icon-circle i {
        font-size: 24px;
    }
    .value-title {
        font-size: 12px;
    }
    
    .page-heading {
        font-size: 28px;
    }
}
