/* Component FAQ list styles (BEM standard) */
.faq-section {
    padding: 20px 0 40px;
}

.faq-block {
    gap: 30px 0;
}

.c-faq__answer ul li {
    list-style: disc;
    margin-left: 19px;
    padding: 5px;
}


/* Accordion Specific BEM Styles */
.c-faq {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.c-faq__item {
    border: 1px solid var(--border-color, #eaeaea);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.c-faq__question {
    margin: 0;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    color: var(--bv-header-main-text, #333);
}

.c-faq__question:hover {
    background: rgba(0, 0, 0, 0.02);
    color: var(--bv-primary, #0D5EF4);
}

.c-faq__icon {
    transition: transform 0.3s ease;
}

.c-faq__item--active .c-faq__icon {
    transform: rotate(180deg);
    color: var(--bv-primary, #0D5EF4);
}

.c-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
}

.c-faq__answer-inner {
    padding: 0 20px 20px 20px;
    color: var(--body-color, #666);
    line-height: 1.6;
}

.c-faq__item--active .c-faq__question {
    border-bottom: 1px solid var(--border-color, #eaeaea);
    color: var(--bv-primary, #0D5EF4);
}

.c-faq__item--active .c-faq__answer {
    max-height: 1000px;
    /* enough to cover dynamic text */
    padding-top: 15px;
}

.c-faq-banner {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}
