.faq-section {
    padding: 100px 5vw;
    background-color: #111;
    min-height: 100vh;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.section-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 60px;
    text-align: center;
}

strong
{
    color: #FF6B00;
}
.faq-categories {
    display: grid;
    /* ИЗМЕНЕНИЕ: Установлено 3 колонки для центрирования */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}
.category-card {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #ccc;
    text-decoration: none;
    border: 1px solid #333;
    transition: all 0.3s ease;
}
.category-card:hover {
    transform: translateY(-5px);
    border-color: #FF6B00;
    background-color: #222;
    color: #FF6B00;
}
.category-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: #FF6B00;
}
.category-card span {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Группы вопросов */
.faq-group {
    margin-bottom: 60px;
}
.faq-group-title {
    font-size: 2rem;
    color: white;
    padding-bottom: 15px;
    border-bottom: 2px solid #FF6B00;
    margin-bottom: 30px;
}

/* Аккордеон */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background-color: #1A1A1A;
    border-radius: 8px;
    border: 1px solid #282828;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}
.faq-question span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
}
.faq-question i {
    font-size: 1rem;
    color: #888;
    transition: transform 0.4s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #FF6B00;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.faq-answer p {
    padding: 0 25px 20px 25px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

/* Адаптивность для категорий */
@media (max-width: 768px) {
    .faq-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .faq-categories {
        grid-template-columns: 1fr;
    }
}