.faq-page {
    width: 100%;
    max-width: 1320px;
    margin: 40px auto 60px;
    padding: 0 15px;
    box-sizing: border-box;
}

.faq-item {
    width: 100%;
    background: #fff;
    border: 1px solid #e3e7ee;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.faq-question {
    display: block;
    width: 100%;
    padding: 22px 70px 22px 24px;
    background: #fff;
    border: 0;
    text-align: left;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    color: #1f2d3d;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
    color: #0f2d57;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
}

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

.faq-answer-inner {
    font-size: 18px;
    line-height: 1.7;
    color: #2f3c4d;
}