/* Вопросы */
 .faq-container {
    border-radius: 20px;
    overflow: hidden;
}

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

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    background-color: #FF6500;
    color: white;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Gilroy-Bold, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e65c00;
}

.faq-item.active .faq-question {
    background-color: #F6EEE9;
    color: #000000;
}

.faq-item.active .faq-question svg path {
    fill: #FF6500;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-family: Gilroy-Regular, sans-serif;
    background-color: #F6EEE9;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
}

.faq-answer p {
    margin: 0;
    color: #000000;
    line-height: 1.5;
}