.faq-accordion-aea8e5d3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item-aea8e5d3 {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}
.faq-title-aea8e5d3 {
    padding: 15px 20px;
    margin: 0;
    cursor: pointer;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}
.faq-title-aea8e5d3:hover {
    background-color: #f1f1f1;
}
.faq-heading-aea8e5d3 {
    margin: 0;
    font-size: 16px;
}
.faq-icon-aea8e5d3 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}
.faq-icon-aea8e5d3 i {
    font-size: 14px;
}
.faq-icon-aea8e5d3 svg {
    width: 14px;
    height: 14px;
}
.faq-item-aea8e5d3.active .faq-icon-aea8e5d3 {
    transform: rotate(180deg);
}
.faq-content-aea8e5d3 {
    display: none;
    padding: 15px 20px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}