/* ===== ЧАСТО ЗАДАВАЕМЫЕ ВОПРОСЫ ===== */
.faq-section {
    background: white;
    border-radius: 32px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.faq-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e0e7ff;
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    background: #f8faff;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question:hover {
    background: #f0f3ff;
}

.faq-toggle {
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}