.faq-section {
    width: 100%;
    padding: 5rem 1.5rem 6rem;
    background: #ffffff;
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.faq-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--theme-color, #0b1e8d);
    background: rgba(11, 30, 141, 0.08);
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--title-color, #1C2438);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .faq-title { font-size: 2.5rem; }
}

.faq-subtitle {
    font-size: 1rem;
    color: #5E5C78;
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e8eaf0;
}

.faq-item:first-child {
    border-top: 1px solid #e8eaf0;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--title-color, #1C2438);
    transition: color 0.2s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--theme-color, #0b1e8d);
}

.faq-question[aria-expanded="true"] {
    color: var(--theme-color, #0b1e8d);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--theme-color, #0b1e8d);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #5E5C78;
    line-height: 1.75;
    margin: 0;
}
