.page-banner {
    position: relative;
    height: 350px;
    background: 
        linear-gradient(to right, rgba(10,18,25,0.82), rgba(10,18,25,0.35)),
        url("../images/banner11.png") center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,18,25,0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 46px;
    letter-spacing: -0.01em;
}

/* ======= FAQs */
.faq-section {
    padding: 110px 0;
    background: var(--paper);
}
.container {
    width: 90%;
    max-width: 860px;
    margin: auto;
}
.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 30px;
}
.faq-question h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
}
.faq-icon {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}
.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 15px;
}