/* Help Page Styling */
.help-tabs .nav-link {
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    margin-right: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.help-tabs .nav-link:hover {
    background-color: #e9ecef;
}

.help-tabs .nav-link.active {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Q&A List Styling */
.qa-list {
    list-style: none;
    padding-left: 0;
}

.qa-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.qa-list li:last-child {
    border-bottom: none;
}

.qa-list h4 {
    font-weight: 500;
    color: #333;
}

.qa-list p {
    color: #555;
    margin-top: 0.5rem;
}

/* 页面布局相关样式 */
.faq-title {
    padding: 2rem 0;
}

.help-support {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .help-tabs .nav-link {
        margin-bottom: 5px;
    }
} 