﻿.faq-list {
    margin-top: 2rem;
    max-width: 900px;
}

.faq-item {
    position: relative;
    margin-bottom: 10px;
    background: #fffbed;
}

.faq-question {
    width: 100%;
    border: none;
    background: #fffbed;
    text-align: left;
    padding: 0 100px 0 28px; 
    min-height: 94px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    cursor: pointer;

    @media (max-width: 1024px) {
        font-size: 0.7rem;
    }
}

.faq-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.03);
}

    .faq-icon::after {
        content: "+";
        font-size: 30px;
        font-weight: 600;
        line-height: 1;
    }

.faq-item.active .faq-icon::after {
    content: "×";
}

.faq-answer {
    display: none;
    padding: 1.5rem 28px;
    line-height: 1.6;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 17px;
}

.faq-item.active .faq-answer {
    display: block;
}
.faq-question span:first-child {
    font-size: 21px;
    font-weight: 500;
    line-height: 31px;
}

.faq-meta {
    max-width: 900px;
    margin-top: 40px;
    border-top: 1px solid #666;
    font-size: 16px;
}
