.faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    gap: 1rem;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.faq-answer-content p {
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-footer {
    margin-top: 3rem;
    text-align: center;
}

.loading-state,
.error-state {
    text-align: center;
    padding: 3rem 1rem;
}

.hidden {
    display: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .faq-content {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer-content {
        font-size: 0.9rem;
    }
}
