/* FAQ项目样式 */
.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

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

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    padding: 1rem 0;
    position: relative;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #001f3f;
}

.faq-question.active {
    color: #001f3f;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #666;
    line-height: 1.6;
}

.faq-answer.active {
    max-height: 200px;
    padding-bottom: 1rem;
}