.nrdc-faq-wrapper{
    font-family:"Plus Jakarta Sans",sans-serif;
    width:100%;
}

.nrdc-faq-item{
    border:1px solid #e6e6e6;
    border-radius:14px;
    margin-bottom:12px;
    background:#fff;
    overflow:hidden;
    transition:all .3s ease;
}

.nrdc-faq-item.active{
    border-color:#f4c400;
}

.nrdc-faq-question{
    width:100%;
    padding:22px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    background:#fff;
    border:none;
    text-align:left;
}

.nrdc-faq-title{
    font-size:16px;
    font-weight:600;
    color:#222;
    line-height:1.5;
    padding-right:20px;
}

.nrdc-faq-icon{
    width:32px;
    height:32px;
    min-width:32px;
    border-radius:50%;
    border:1px solid #e5e5e5;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
    background:#fff;
}

.nrdc-faq-item.active .nrdc-faq-icon{
    background:#f4c400;
    border-color:#f4c400;
}

.nrdc-faq-icon svg{
    width:14px;
    height:14px;
    transition:.3s ease;
}

.nrdc-faq-item.active .nrdc-faq-icon svg{
    transform:rotate(180deg);
}

.nrdc-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.nrdc-faq-answer-inner{
    padding:0 18px 22px;
    color:#666;
    font-size:15px;
    line-height:1.9;
}
