.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.faq-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 32px;
}

.faq-category-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    padding: 0 4px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 4px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    line-height: 1.5;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: 16px;
    color: var(--gray-400);
    transition: transform var(--transition-fast);
}

.faq-chevron-open {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 4px 16px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.faq-answer ul {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0 0 12px;
    padding-left: 20px;
}

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

.faq-answer li {
    margin-bottom: 4px;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 15px;
    }

    .faq-question {
        font-size: 14px;
        padding: 14px 4px;
    }

    .faq-answer p,
    .faq-answer ul {
        font-size: 13px;
    }
}
