.bac-faq-container {
    width: 100%;
}
.bac-faq-item {
    border-bottom: 1px solid #e5e7eb;
}
.bac-faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}
.bac-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1em 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    text-align: left;
    color: inherit;
    gap: 1em;
}
.bac-faq-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.bac-faq-question[aria-expanded="true"] .bac-faq-icon {
    transform: rotate(180deg);
}
.bac-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}
.bac-faq-answer.is-open {
    max-height: 500px;
    padding-bottom: 1em;
}
.bac-faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}
