:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e567d6f */.faq-section{
    padding:100px 20px;
    background:linear-gradient(
    135deg,
    #fafafa 0%,
    #f3f4f6 50%,
    #e5e7eb 100%);
}

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

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

.faq-badge{
    display:inline-block;
    padding:10px 18px;
    background:#eff6ff;
    color:#2563eb;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.faq-header h2{
    font-size:52px;
    color:#111827;
    margin-bottom:15px;
}

.faq-header h2 span{
    color:#2563eb;
}

.faq-header p{
    color:#6b7280;
    font-size:18px;
    max-width:700px;
    margin:auto;
}

.faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:18px;
}

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

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

.faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:22px 25px;
    font-size:18px;
    font-weight:700;
    color:#111827;
    position:relative;
}

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

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:25px;
    font-size:24px;
    color:#2563eb;
}

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

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

@media(max-width:768px){

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

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

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

    .faq-item p{
        padding:0 18px 18px;
    }

}/* End custom CSS */