/* ================= SSS ÖZEL CSS ================= */

.sss-container {
    width: 100%;
    background-color: #f9f9f9;
    padding-bottom: 80px;
}

/* Başlık Şeridi */
.page-header-bar {
    width: 100%;
    padding: 40px 0;
    background-color: #fff;
    border-bottom: 3px solid #ff0000;
    text-align: center;
    margin-bottom: 40px;
}

.container-title h1 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
}

.sub-title {
    color: #ff0000;
    font-weight: 300;
}

/* Akordeon Alanı */
.accordion-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-title {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin: 40px 0 20px;
    border-left: 5px solid #ff0000;
    padding-left: 15px;
    text-transform: uppercase;
}

.accordion-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

/* Akordeon Başlık */
.accordion-header {
    width: 100%;
    padding: 18px 25px;
    background: #fff;
    border: none;
    outline: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.accordion-header i {
    font-size: 14px;
    transition: 0.4s;
}

.accordion-header:hover {
    background-color: #fcfcfc;
    color: #ff0000;
}

/* İçerik Alanı */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.accordion-content p {
    padding: 0 25px 25px 25px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Aktif Durum */
.accordion-item.active .accordion-content {
    max-height: 500px; /* İçerik boyutuna göre artabilir */
    transition: max-height 0.5s ease-in;
}

.accordion-item.active .accordion-header {
    background-color: #000;
    color: #fff;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .container-title h1 { font-size: 24px; }
    .accordion-header { font-size: 14px; padding: 15px; }
}