/* ============ FAQ base ============ */
.page-faq {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Courier New', monospace;
    color: #f2f2f2;
    background: #0d0d0d;
}

.page-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============ Section ============ */
.faq__section {
    margin-bottom: 40px;
}

.faq__heading {
    font-size: 18px;
    text-transform: uppercase;
    color: #ff6600;
    margin-bottom: 20px;
    border-left: 2px solid #ff6600;
    padding-left: 10px;
}

/* ============ Items ============ */
.faq__item {
    border-bottom: 1px solid #333;
}

.faq__question {
    width: 100%;
    text-align: left;
    padding: 15px 40px 15px 10px; /* ← увеличил правый padding */
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    white-space: normal; /* чтобы текст переносился */
}

.faq__question::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 15px; /* немного отступаем от края */
    transform: translateY(-50%); /* выравниваем по вертикали */
    font-size: 18px;
    transition: transform 0.3s;
    pointer-events: none; /* чтобы клик не мешал */
}


.faq__question.active::after {
    content: '–';
}

.faq__answer {
    display: none;
    padding: 0 10px 15px;
    font-size: 14px;
    color: #ccc;
}

.faq__answer p {
    margin: 0;
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
    .page-title {
        font-size: 20px;
    }
    .faq__question {
        font-size: 14px;
    }
}