.faq-widget {
    margin: 0 auto;
}

.faq-widget details {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
}

.faq-widget summary {
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--navy-900, #0a1628);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-widget summary::-webkit-details-marker {
    display: none;
}

.faq-widget summary::after {
    content: '+';
    color: var(--brand-red, #ca2030);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}

.faq-widget details[open] summary::after {
    content: '−';
}

.faq-widget .faq-answer {
    padding-top: 1rem;
    color: var(--navy-700, #1e3a5f);
    font-size: 1.05rem;
}

.faq-widget .faq-answer p:last-child {
    margin-bottom: 0;
}