/* FAQ-аккордеон (перенос реализации с nzeta.ru) */
.faq-container { font-family: Arial, sans-serif; max-width: 700px; }
.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f7f7f7;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #222;
}
.faq-question:hover { background: #efefef; }
.faq-icon {
    font-size: 20px;
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s, padding .3s;
    padding: 0 20px;
}
.faq-item.open .faq-answer { padding: 16px 20px; }
.faq-answer p { margin: 0; font-size: 15px; line-height: 1.6; color: #444; }
