.faq-hero{

    height:320px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.faq-overlay{

    max-width:850px;

    padding:20px;

}

.faq-overlay h1{

    font-size:50px;

    margin-bottom:20px;

}

.faq-overlay p{

    font-size:20px;

    color:#dce7ff;

    line-height:1.8;

}

.faq-container{

    max-width:1000px;

    margin:70px auto;

    padding:0 20px;

}

.faq-container h2{

    margin:50px 0 20px;

    color:white;

    font-size:32px;

}

.faq-item{

    background:white;

    border-radius:12px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

}

.faq-question{

    width:100%;

    border:none;

    background:white;

    padding:22px 25px;

    font-size:18px;

    font-weight:600;

    color:#0b3d91;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

}

.faq-question span{

    font-size:28px;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 25px 25px;

    color:#555;

    line-height:1.9;

}