/* HERO */

.faq-hero{

    padding:100px 0;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #EAFBF8,
        #FFFFFF
    );
}

.faq-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:#0E9F8D;

    color:#fff;

    font-size:12px;

    font-weight:700;
}

.faq-hero h1{

    margin-top:20px;

    font-size:54px;

    font-weight:800;
}

.faq-hero p{

    max-width:850px;

    margin:20px auto 0;

    line-height:1.9;

    color:#6B7280;
}


/* FAQ */

.faq-section{

    padding:80px 0;
}

.faq-wrapper{

    max-width:950px;

    margin:auto;
}

.faq-item{

    background:#fff;

    border-radius:20px;

    margin-bottom:16px;

    overflow:hidden;

    box-shadow:
    0 8px 20px rgba(0,0,0,.05);
}

.faq-question{

    width:100%;

    border:none;

    background:#fff;

    padding:24px;

    text-align:left;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:18px;

    font-weight:600;

    cursor:pointer;
}

.faq-question i{

    color:#0E9F8D;

    transition:.3s;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.3s ease;
}

.faq-answer p{

    padding:0 24px 24px;

    color:#6B7280;

    line-height:1.9;
}

.faq-item.active .faq-answer{

    max-height:300px;
}

.faq-item.active .faq-question i{

    transform:rotate(180deg);
}


/* CTA */

.faq-contact{

    padding-bottom:100px;
}

.faq-contact-box{

    background:
    linear-gradient(
        135deg,
        #0E9F8D,
        #18B8A3
    );

    color:#fff;

    text-align:center;

    padding:60px;

    border-radius:30px;
}

.faq-contact-box p{

    max-width:800px;

    margin:15px auto 25px;

    line-height:1.9;
}

.faq-btn{

    display:inline-block;

    background:#fff;

    color:#0E9F8D;

    padding:14px 28px;

    border-radius:999px;

    text-decoration:none;

    font-weight:700;
}


/* MOBILE */

@media(max-width:768px){

    .faq-hero{

        padding:70px 0;
    }

    .faq-hero h1{

        font-size:34px;
    }

    .faq-question{

        font-size:16px;
        padding:20px;
    }

    .faq-contact-box{

        padding:35px 24px;
    }

}
