/* Container styling */
.faq-sec-e5fd908c {
    font-family: 'Manrope', sans-serif;
    box-sizing: border-box;
    width: 100%;
}

.faq-header-e5fd908c {
    text-align: center;
    margin-bottom: 40px;
}

.faq-label-e5fd908c {
    display: block;
    margin-bottom: 8px;
}

.faq-title-e5fd908c {
    margin: 0 0 12px 0;
}

.faq-subtitle-e5fd908c {
    margin: 0 auto;
}

/* Accordion Grid */
.faq-grid-e5fd908c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .faq-grid-e5fd908c {
        grid-template-columns: 1fr;
    }
}

/* Accordion Item */
.faq-item-e5fd908c {
    transition: border-color 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.faq-question-row-e5fd908c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    gap: 15px;
    user-select: none;
}

.faq-question-text-e5fd908c {
    margin: 0;
    transition: color 0.3s ease;
}

/* Circular plus icon wrapper */
.faq-icon-wrapper-e5fd908c {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    position: relative;
}

.faq-icon-wrapper-e5fd908c::before,
.faq-icon-wrapper-e5fd908c::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: background-color 0.3s ease;
}

.faq-icon-wrapper-e5fd908c::before {
    width: 10px;
    height: 2px;
}

.faq-icon-wrapper-e5fd908c::after {
    width: 2px;
    height: 10px;
}

/* Open State classes */
.faq-item-e5fd908c.is-open .faq-icon-wrapper-e5fd908c {
    transform: rotate(45deg);
}

/* Accordion content wrapper with slide transition */
.faq-answer-wrapper-e5fd908c {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item-e5fd908c.is-open .faq-answer-wrapper-e5fd908c {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-content-e5fd908c {
    margin: 0;
}
