<style>

.rjk-faq-section{
    padding:90px 0;
    background:#f8f4ee;
}

.rjk-faq-heading{
    text-align:center;
    margin-bottom:50px;
}

.rjk-faq-heading span{
    display:block;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#9c7b4f;
    margin-bottom:10px;
    font-weight:600;
}

.rjk-faq-heading h2{
    font-size:42px;
    color:#222;
    margin-bottom:15px;
    line-height:1.2;
}

.rjk-faq-heading p{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.rjk-faq-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    max-width:1200px;
    margin:auto;
}

.rjk-faq-column{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.rjk-faq-item{
    background:#fff;
    border:1px solid #e9dfd1;
    border-radius:12px;
    overflow:hidden;
    transition:0.3s ease;
}

.rjk-faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:22px 24px;
    font-weight:600;
    font-size:16px;
    color:#222;
    position:relative;
    line-height:1.6;
}

.rjk-faq-item summary::-webkit-details-marker{
    display:none;
}

.rjk-faq-item summary:after{
    content:"+";
    position:absolute;
    right:22px;
    top:18px;
    font-size:24px;
    color:#9c7b4f;
    font-weight:300;
}

.rjk-faq-item[open] summary:after{
    content:"−";
}

.rjk-faq-item p{
    padding:0 24px 22px;
    color:#666;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .rjk-faq-grid{
        grid-template-columns:1fr;
    }

    .rjk-faq-heading h2{
        font-size:30px;
    }

}

</style>