.faq-wrapper {
    max-width: 1000px;
    margin: 180px auto;
    padding: 30px 20px;
    background-color: var(--background);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.6;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 15px 20px;
    font-weight: bold;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: var(--background);
    color: var(--text);
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px 20px;
}

@media (max-width: 768px) {
    .faq-header h1 {
        font-size: 28px;
    }

    .faq-header p {
        font-size: 16px;
    }
}