/* Стили для FAQ */
.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    max-height: 1000px !important;
    padding: 15px;
}

.toggle-icon {
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.plus-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ff3030;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.plus-line.horizontal {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s;
}

.faq-item.active .plus-line.horizontal {
    transform: translateY(-50%) rotate(0);
}