.faq {
    padding: 64px 0;
}

.faq-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.faq .section-title-center {
    margin-bottom: 32px;
}

.faq-grid {
    gap: 16px;
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #8746eb;
    border: none;
    cursor: pointer;
    font-family: 'Fredoka';
    font-weight: 600;
    font-size: 20px;
    color: white;
    text-align: left;
    line-height: 29.7px;
}

.faq-question span {
    flex: 1;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s;
    width: 16px;
    height: 16px;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    background: #7720fc;
    padding: 16px 24px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-family: 'Fredoka';
    font-weight: 400;
    font-size: 16px;
    color: white;
    margin: 0;
    line-height: 19.2px;
}

@media (max-width: 768px) {
    .faq-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 16px;
        padding: 12px 16px;
    }

    .faq-answer {
        padding: 12px 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}
