.faqs {
    margin-bottom: 3rem;
    padding: 2.5rem;
    border: 1px solid #ececec;
    border-radius: 4px;
    background-color: #fff;
}

.faqs .faq {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ececec;
}

.faqs .faq:last-child {
    margin-bottom: -1.5rem;
    border-bottom: 0;
}

.faqs .faq-question {
    cursor: pointer;
}

.faqs .faq-question:before {
    position: relative;
    top: 2px;
    margin-right: .6rem;
    content: '\f055';
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
}

.faqs .faq-question.open:before {
    content: '\f056';
}

.faqs .faq-answer {
    display: none;
    padding: 0 0 1.5rem 2.5rem;
}
