.faq-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 20px; /* Matching your 2026 theme */
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.faq-question {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
}

.faq-question::after {
    content: '+';
    color: var(--theme-green);
    font-size: 1.5rem;
}

.faq-item[open] .faq-question::after {
    content: '-';
}

.faq-answer {
    padding-top: 1rem;
    color: #4a5568;
    line-height: 1.6;
}


.faq-answer a {
    text-decoration: none;
    color: var(--theme-green) !important;
    transition: color 0.3s ease;
}
