﻿ 
.sss-modern {
    padding: 60px 0;
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
}

.sss-modern .sss-header {
    text-align: center;
    margin-bottom: 48px;
}

    .sss-modern .sss-header .sss-eyebrow {
        display: inline-block;
        background: rgba(245, 158, 11, 0.1);
        color: #d97706;
        padding: 6px 20px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .sss-modern .sss-header .sss-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .sss-modern .sss-header .sss-subtitle {
        font-size: 1.05rem;
        color: #64748b;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

.sss-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sss-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(245, 158, 11, 0.15);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .sss-item:hover {
        border-color: rgba(245, 158, 11, 0.3);
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.08);
    }

    .sss-item .sss-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 24px;
        background: transparent;
        border: none;
        font-size: 1rem;
        font-weight: 600;
        color: #0f172a;
        cursor: pointer;
        transition: all 0.25s ease;
        text-align: left;
        gap: 16px;
    }

        .sss-item .sss-question:hover {
            color: #d97706;
        }

        .sss-item .sss-question .sss-question-text {
            flex: 1;
            font-size: 1.05rem;
            line-height: 1.5;
        }

        .sss-item .sss-question .sss-icon {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #fef3c7;
            display: flex !important;
            align-items: center;
            justify-content: center;
            transition: all 0.35s ease;
            font-size: 16px;
            color: #d97706;
        }

            .sss-item .sss-question .sss-icon i {
                display: inline-block !important;
                transition: transform 0.35s ease;
                font-size: 16px;
            }

    .sss-item.active .sss-question .sss-icon {
        background: #f59e0b;
        color: #ffffff;
    }

        .sss-item.active .sss-question .sss-icon i {
            transform: rotate(180deg);
        }

    .sss-item .sss-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
        padding: 0 24px;
    }

    .sss-item.active .sss-answer {
        max-height: 800px;
        padding: 0 24px 24px 24px;
    }

    .sss-item .sss-answer-content {
        font-size: 0.98rem;
        line-height: 1.7;
        color: #334155;
        padding-top: 4px;
        border-top: 1px solid rgba(245, 158, 11, 0.15);
    }

    .sss-item.active {
        border-color: rgba(245, 158, 11, 0.3);
        background: #fffbeb;
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.08);
    }

@media (max-width: 768px) {
    .sss-modern

{
    padding: 40px 0;
}

.sss-modern .sss-header .sss-title {
    font-size: 1.6rem;
}

.sss-item .sss-question {
    padding: 14px 18px;
}

    .sss-item .sss-question .sss-question-text {
        font-size: 0.95rem;
    }

.sss-item.active .sss-answer {
    padding: 0 18px 18px 18px;
}

.sss-item .sss-answer-content {
    font-size: 0.92rem;
}

}
/* hidden durumda da animasyon bozulmasın */
.sss-item .sss-answer[hidden] {
    display: block;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
}
.sss-question-heading {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
@media (max-width: 768px) {
    .sss-item .sss-answer[hidden] {
        padding: 0 18px;
    }
}