.faq-header {
    text-align: center;
    padding: 2rem 0;
}
.faq-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}
.faq-header p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto 2rem;
}
.faq-item {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.2s;
}
.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
}
.faq-question {
    font-weight: 600;
    color: var(--color-dark);
    padding: 1.25rem 1.5rem;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
}
.faq-question:hover {
    color: var(--color-primary);
}
.faq-question i {
    transition: transform 0.3s;
    color: var(--color-text-muted);
}
.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--color-primary);
}
.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.faq-cta {
    text-align: center;
    padding: 2rem 0;
}
.faq-cta a {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.faq-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}
@media (max-width: 767.98px) {
    .faq-header h1 {
        font-size: 1.5rem;
    }
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    .faq-answer {
        padding: 0 1.25rem 1rem;
        font-size: 0.95rem;
    }
}
