.faq-section{
    background-color: #f1f1f1;
}

.heading-text {
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -1.600000023841858px;
    text-align: center;
}

.container-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 78%;
}

.accordion {
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    border: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: -0.6px;
    line-height: 26px;
    /* padding: 8px; */
}

.accordion-header span {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.accordion-body {
    color: #000000;
    font-size: 14px;
    opacity: 0;
    height: 0;
    width: 100%;
    padding: 0;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.4000000059604645px;
    text-align: left;
    transition: opacity .0s;

}

.accordion-body.active {
    height: 100%;
    opacity: 1;
    padding: 5px;
}

.arrow {
    transition: transform .2s linear;
}

.accordion:has(.active) .arrow {
    transform: rotate(45deg);
    background-color: #f1f1f1;
    padding: 4px;
    border-radius: 50%;

}
