.faq-section {
    padding: 60px 0;
}

.page-faq {
    background: #070b12;
}

.faq-page-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 72px;
    background:
        linear-gradient(135deg, rgba(5, 8, 12, 0.86), rgba(12, 20, 32, 0.72)),
        url('../images/engine-bg.jpg') center/cover no-repeat;
}

.faq-page-hero-copy {
    max-width: 760px;
}

.faq-page-hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.2;
}

.faq-page-hero p {
    color: rgba(235, 240, 248, 0.78);
    line-height: 2;
}

.faq-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.faq-page-section {
    background: #070b12;
}

.faq-empty-state {
    max-width: 680px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    text-align: center;
}

.faq-accordion .faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-document-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 0 32px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    color: #fff;
}

.faq-document-card h2 {
    margin: 8px 0 10px;
    font-size: 1.35rem;
    line-height: 1.6;
}

.faq-document-card p {
    margin: 0;
    color: rgba(235, 240, 248, 0.75);
    line-height: 1.9;
}

.faq-document-label {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 202, 40, 0.16);
    color: #ffca28;
    font-size: 0.86rem;
    font-weight: 700;
}

.faq-pdf-btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .faq-document-card {
        align-items: stretch;
        flex-direction: column;
        padding: 22px;
    }

    .faq-document-card .btn {
        width: 100%;
        justify-content: center;
    }
}