/* SSS Ana Konteynır */
#sssAccordion {
    max-width: 900px;
    margin: 0 auto;
}

/* Başlık Stili */
.sss-kategori-baslik {
    color: #00768e;
    font-weight: 700;
    font-size: 1.4rem;
    padding-left: 10px;
    border-left: 5px solid #ff006e; /* İlanpa'nın pembe tonu */
    margin-bottom: 25px;
    margin-top: 40px;
}

/* Kart Yapısı */
.accordion-item {
    border: none !important;
    margin-bottom: 15px;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    transform: translateY(-2px);
}

/* Buton (Soru) Kısmı */
.accordion-button {
    border-radius: 12px !important;
    padding: 20px;
    font-weight: 600;
    color: #444;
    font-size: 1.05rem;
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #00768e;
    box-shadow: none;
}

/* İkon Özelleştirme */
.accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}

/* Cevap Alanı */
.accordion-body {
    padding: 0 25px 25px 25px;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    background-color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* Soru İkonu */
.q-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00768e, #00d2ff);
    color: white;
    border-radius: 8px;
    margin-right: 15px;
    font-size: 0.8rem;
}

/* Başlık Hizalaması */
.help-header-aligned {
    padding-left: 0; /* Container içindeki padding'e uyum sağlar */
}

.help-header-aligned h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 5px;
}

.help-header-aligned p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Çizgi Tasarımı: Başlık genişliğine göre orantılı */
.header-line-simple {
    width: 100px;
    height: 3px;
    background: #00768e; /* Turkuaz */
    position: relative;
    border-radius: 50px;
}

.header-line-simple::after {
    content: '';
    position: absolute;
    right: -30px;
    width: 25px;
    height: 3px;
    background: #ff006e; /* Pembe */
    border-radius: 50px;
}

/* Kategori Başlıklarının Hizası */
.sss-kategori-baslik {
    color: #00768e;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 0;
}

/* Ana Konteynır Ayarı */
.help-center-wrapper {
    max-width: 1000px; /* İçeriğin çok yayılmasını engeller */
    margin: 0 auto;    /* Konteynırı sayfada ortalar */
    padding: 0 15px;   /* Mobilde kenarlardan boşluk bırakır */
}

/* Başlık alanını bu konteynıra uyduralım */
.help-header-aligned {
    margin-bottom: 40px;
}

/* SSS Accordion genişliğini wrapper'a uydur */
#sssAccordion {
    width: 100%;
    max-width: 100%; /* Artık wrapper tarafından yönetiliyor */
}

/* Mobilde başlığın ve çizgilerin düzgün görünmesi için */
@media (max-width: 768px) {
    .help-header-aligned {
        text-align: left;
        padding: 0 15px;
    }
    .header-line-simple {
        margin-left: 0;
    }
}
