.fxt-child-broker-faq {
    --fxt-faq-border: #d8dde3;
    --fxt-faq-bg-open: #e8f4fc;
    --fxt-faq-text: #1f2f3d;
    --fxt-faq-link: #1a73e8;
}

.fxt-child-broker-faq__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fxt-faq-text);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.fxt-child-broker-faq__accordion {
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.fxt-child-broker-faq__item {
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    background: #ffffff;
}

.fxt-child-broker-faq__item + .fxt-child-broker-faq__item {
    border-top: 1px solid var(--fxt-faq-border);
}

.fxt-child-broker-faq__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    margin: 0;
    padding: 1rem 1.1rem;
    text-align: left;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--fxt-faq-text);
    background: #fff;
    border: 0;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.fxt-child-broker-faq__item.is-open .fxt-child-broker-faq__trigger {
    background: var(--fxt-faq-bg-open);
}

.fxt-child-broker-faq__trigger:hover {
    background: #f4f8fb;
}

.fxt-child-broker-faq__item.is-open .fxt-child-broker-faq__trigger:hover {
    background: var(--fxt-faq-bg-open);
}

.fxt-child-broker-faq__question {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0056b3;
    line-height: 1.45;
}

.fxt-child-broker-faq__chevron {
    flex-shrink: 0;
    width: 0.65rem;
    height: 0.65rem;
    border-right: 2px solid var(--fxt-faq-text);
    border-bottom: 2px solid var(--fxt-faq-text);
    transform: rotate(45deg);
    margin-top: -0.2rem;
    opacity: 0.75;
    transition: transform 0.2s ease;
}

.fxt-child-broker-faq__item.is-open .fxt-child-broker-faq__chevron {
    transform: rotate(-135deg);
    margin-top: 0.15rem;
}

.fxt-child-broker-faq__panel {
    display: none;
    border-top: 1px solid var(--fxt-faq-border);
    background: #fff;
}

.fxt-child-broker-faq__item.is-open .fxt-child-broker-faq__panel {
    display: block;
}

.fxt-child-broker-faq__answer {
    padding: 1rem 1.1rem 1.15rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--fxt-faq-text);
}

.fxt-child-broker-faq__answer p {
    margin: 0 0 0.65em;
}

.fxt-child-broker-faq__answer p:last-child {
    margin-bottom: 0;
}

.fxt-child-broker-faq__answer a {
    color: var(--fxt-faq-link);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fxt-child-broker-faq__answer a:hover {
    text-decoration-thickness: 2px;
}
