/* Основные стили FAQ */
.faq-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

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

.faq-question p {
    margin: 0;
    font-size: 1.25rem;
}

.faq-toggle {
    background-color: transparent;
    border: none;
    font-size: 1.875rem;
    cursor: pointer;
    font-weight: bold;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #333;
    padding: 20px 0;
    line-height: 2;
    font-size: 1.25rem;
}

.faq-answer p {
    margin: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle::before {
    content: '-';
}


@media screen and (min-width: 1024px) {

    .faq-question p {
        font-size: 1.875rem;
    }

    .faq-answer {
        font-size: 1.375rem;
    }
}