.faq-container-5bbc36da {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.faq-5bbc36da-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}
.faq-5bbc36da-item:last-child {
    border-bottom: none;
}
.faq-5bbc36da-title {
    cursor: pointer;
    font-weight: 600;
    user-select: none;
    transition: color 0.3s ease;
}
.faq-5bbc36da-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    overflow: hidden;
}
.faq-5bbc36da-content.is-open {
    grid-template-rows: 1fr;
}
.faq-5bbc36da-content-inner {
    min-height: 0;
    padding-top: 0;
    opacity: 0;
    transition: opacity 0.3s ease, padding-top 0.3s ease;
}
.faq-5bbc36da-content.is-open .faq-5bbc36da-content-inner {
    opacity: 1;
    padding-top: 1rem;
}