.faq-5a8bc03e-wrapper {
    max-width: 840px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.faq-5a8bc03e-main-title {
    color: #FFFFFF;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.025em;
}

.faq-5a8bc03e-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-5a8bc03e-item {
    background-color: #101726;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-5a8bc03e-item:hover {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-5a8bc03e-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
}

.faq-5a8bc03e-question-text {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    padding-right: 20px;
    transition: color 0.2s ease;
}

.faq-5a8bc03e-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-5a8bc03e-svg {
    width: 14px;
    height: 14px;
    color: #94a3b8;
    transition: color 0.2s ease, transform 0.3s ease;
}

/* Open/Close toggle animation matching the screenshot */
.faq-5a8bc03e-item .line-1 {
    transform-origin: center;
    transition: transform 0.3s ease;
}
.faq-5a8bc03e-item .line-2 {
    transform-origin: center;
    transition: transform 0.3s ease;
}

/* Closed state - looks like a plus (+) or similar, actually they use standard diagonal 'x' as closed but let's do a smooth rotation */
.faq-5a8bc03e-item:not(.is-active) .faq-5a8bc03e-svg {
    transform: rotate(45deg);
}
.faq-5a8bc03e-item.is-active .faq-5a8bc03e-svg {
    transform: rotate(0deg);
    color: #FFFFFF;
}

.faq-5a8bc03e-content {
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-5a8bc03e-answer-inner {
    padding: 0 24px 24px 24px;
    color: #94A3B8;
    font-size: 0.975rem;
    line-height: 1.625;
}

.faq-5a8bc03e-answer-inner p {
    margin: 0 0 12px 0;
}
.faq-5a8bc03e-answer-inner p:last-child {
    margin-bottom: 0;
}
