/* ==========================
        FAQ SECTION
========================== */

.faq-section{
    padding:100px 8%;
    background:#ffffff;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-header{
    text-align:center;
    margin-bottom:60px;
}

.faq-header span{
    color:#C8A24D;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.faq-header h2{
    font-size:46px;
    color:#0B1F3A;
    margin:18px 0;
    font-weight:700;
}

.faq-header p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
    font-size:17px;
}

/* FAQ */

.faq-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{
    background:#F5F7FA;
    border-radius:18px;
    padding:0;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.faq-item:hover{
    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:25px 30px;
    font-size:20px;
    font-weight:600;
    color:#0B1F3A;
    position:relative;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    color:#C8A24D;
    transition:.3s;
}

.faq-item[open] summary::after{
    content:"−";
}

.faq-item p{
    padding:0 30px 25px;
    color:#555;
    line-height:1.8;
    font-size:16px;
}

/* ==========================
        MOBILE
========================== */

@media (max-width:768px){

.faq-section{
    padding:70px 20px;
}

.faq-header h2{
    font-size:34px;
}

.faq-header p{
    font-size:16px;
}

.faq-item summary{
    font-size:18px;
    padding:22px;
}

.faq-item p{
    padding:0 22px 22px;
    font-size:15px;
}

}