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

.faq-sub-header h2 {
    font-size: 35px;
    color: #D50000;
}

.faq-main-header {
    padding: 0px 20px 0px 20px;
    text-align: center;
    width: 90%;
    margin-top: 15px;
}

.faq-main-header h2 {
    font-size: 35px;
    font-weight: 700;
}

.faq-accordion-container{
    margin-top: 20px;
    margin-bottom: 50px;
}

.qn-accordion {
    background-color: #fff;
    color: #D50000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 14px;
    transition: 0.4s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;

}

.active {
    color: #000;
}

.qn-accordion.active .icon i::before {
    content: "\f068";
    margin-right: 1rem;
}

.qn-accordion:not(.active) .icon i::before {
    content: "\f067"; 
    margin-right: 1rem;
}

/* .qn-accordion:after {
    content: "\02795";
    color: #D50000;
    font-weight: bold;
    float: left;
    margin-left: 5px;
    margin-right: 1rem;
    font-size: 20px;
}

.active:after {
    content: "\02796";
} */

.ans-panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}