.faq-accordion .faq-item {
    background-color: #19221D;
    border-radius: 8px;
    color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
}
.faq-accordion .faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    line-height: 1.75rem;
    color: #fff;
    padding: 0;
}
.faq-accordion .faq-question span {
    color: #fff;
}
.faq-accordion .faq-question span {
    transition: transform 0.2s ease;
}

.faq-accordion .faq-question[aria-expanded="true"] span {
    transform: rotate(180deg);
}
.faq-accordion .faq-answer p{
    color: #fff;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 400;
    padding-bottom: 1.75rem;
    padding-top: .5rem;
}