.accordion-row {
    box-shadow: 0 2px 0 0 #F6B31F;
    margin: 0 2px;
}
.accordionHeading {
    display: flex;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    column-gap: 1rem;
    border-top-left-radius: .75rem;
    border-top-right-radius: .75rem;
    text-align: left;
    line-height: 2rem !important;
}
.accordionBody {
    max-height: 0px;
    overflow-y: hidden;
    font-size: 1.2rem;
    transition-duration: .5s;
}
.accordion-main .h2 {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}
.accordion-toggle {
    position: relative;
    padding-left: 30px;
    color: #8081BD;
}
.accordion-toggle::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(12px, 4.5vw, 24px);
    line-height: 1;
    color: #8081BD;
}
.accordion-toggle.open::before { 
    content: '-';
    color: #EA5D4A;
}
.accordion-toggle.open {
    color: #EA5D4A;
}
.faq h1 {
    font-weight: 700;
    font-size: clamp(28px, 4.5vw, 40px);
    color: #8081BD;
}
.faq h2 {
    font-weight: 700;
    font-size: clamp(28px, 4.5vw, 40px);
    color: #334155;
}
.faq-text {
    font-weight: 500;
    font-size: 16px;
    color: #334155;
}