*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#f4f7ff;
    color:#222;
    line-height:1.7;
}

html{
    scroll-behavior:smooth;
}
/* ===== HERO ===== */
.faq-hero{
    background:linear-gradient(135deg,#0b1d4d,#123b8a);
    color:#fff;
    padding:85px 20px;
    text-align:center;
}

.faq-hero h1{
    font-size:52px;
    font-weight:800;
    margin-bottom:16px;
}

.faq-hero p{
    max-width:850px;
    margin:auto;
    font-size:20px;
    color:#dce6ff;
}

/* ===== SECTION ===== */
.section{
    max-width:1100px;
    margin:70px auto;
    padding:0 20px;
}

/* ===== FAQ BOX ===== */
.faq-container{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    transition:0.25s ease;
    border:1px solid #dce5ff;
}

.faq-item:hover{
    transform:translateY(-2px);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:24px;
    font-size:19px;
    font-weight:700;
    color:#123b8a;
    text-align:left;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question span{
    font-size:24px;
    transition:0.25s ease;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.35s ease;
    padding:0 24px;
}

.faq-answer p{
    padding-bottom:24px;
    color:#555;
    font-size:16px;
}

/* ===== CTA ===== */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.cta-buttons a{
    text-decoration:none;
    padding:15px 30px;
    border-radius:10px;
    font-weight:700;
    transition:0.25s ease;
}

.cta-primary{
    background:#fff;
    color:#ff6f00;
}

.cta-secondary{
    background:#0b1d4d;
    color:#fff;
}

.cta-buttons a:hover{
    transform:translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

    .faq-hero h1{
        font-size:38px;
    }

    .faq-hero p{
        font-size:17px;
    }

    .faq-question{
        font-size:17px;
        padding:20px;
    }

    .cta-section h2{
        font-size:32px;
    }

    .cta-section p{
        font-size:17px;
    }

}