

/* Добавить в faq.css */
.faq-category-section {
    margin-bottom: 2rem;
}

.category-header {
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
}

/* Обновить анимацию для категорий */
.faq-category-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-category-section:nth-child(1) { animation-delay: 0.1s; }
.faq-category-section:nth-child(2) { animation-delay: 0.3s; }
.faq-category-section:nth-child(3) { animation-delay: 0.5s; }
.faq-category-section:nth-child(4) { animation-delay: 0.7s; }
