.faq-section {
    background: #F7FAFB;
    border-top: 1px solid #ECF1F2;
}

.faq-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 88px 32px;
}

.faq-inner h2 {
    font-family: 'Archivo';
    font-weight: 800;
    font-size: 34px;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid #E6EAEC;
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 22px;
    font-family: inherit;
    text-align: left;
}

.faq-question span:first-child {
    font-weight: 700;
    font-size: 16.5px;
    color: #0B0E11;
}

.faq-sign {
    font-family: 'Archivo';
    font-weight: 800;
    font-size: 22px;
    color: #F2675A;
    line-height: 1;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}

.faq-answer.open {
    max-height: 240px;
    opacity: 1;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    color: #566069;
    margin: 0;
    padding: 0 22px 22px;
}