.sss-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sss-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.sss-header {
    text-align: center;
    margin-bottom: 60px;
}

.sss-header h4 {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sss-baslik {
    font-size: 3rem;
    color: #000000;
    font-weight: 700;
    margin: 0;
    position: relative;
}

.sss-baslik::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #696969, #000000);
    border-radius: 2px;
}

.sss-listesi {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sss-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sss-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.sss-soru {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sss-soru:hover {
    background: #f8f9fa;
}

.sss-soru h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.5;
}

.sss-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #acacac, #000000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem; /* İkon boyutu */
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sss-item.active .sss-icon {
    transform: rotate(180deg); /* Chevron/Angle için */
    background: linear-gradient(135deg, #acacac, #000000);
}

/* Plus ikonu için özel rotate */
.sss-item.active .sss-icon .fa-plus {
    transform: rotate(45deg);
}

.sss-cevap {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8f9fa;
}

.sss-item.active .sss-cevap {
    max-height: 500px;
}

.sss-cevap p {
    padding: 0 30px 25px;
    margin: 0;
    color: #5d6d7e;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Açılış animasyonu */
.sss-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.sss-item:nth-child(1) { animation-delay: 0.1s; }
.sss-item:nth-child(2) { animation-delay: 0.2s; }
.sss-item:nth-child(3) { animation-delay: 0.3s; }
.sss-item:nth-child(4) { animation-delay: 0.4s; }
.sss-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .sss-section {
        padding: 80px 0;
    }
    
    .sss-baslik {
        font-size: 2.5rem;
    }
    
    .sss-soru {
        padding: 20px 25px;
    }
    
    .sss-soru h3 {
        font-size: 1.2rem;
    }
    
    .sss-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .sss-cevap p {
        padding: 0 25px 20px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .sss-container {
        padding: 0 15px;
    }
    
    .sss-baslik {
        font-size: 2rem;
    }
    
    .sss-header h4 {
        font-size: 1rem;
    }
    
    .sss-soru {
        padding: 18px 20px;
    }
    
    .sss-soru h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .sss-icon {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .sss-cevap p {
        padding: 0 20px 18px;
    }
}