.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.section-title .view-more {
    font-size: 14px;
    color: #409eff;
    text-decoration: none;
    font-weight: 500;
}
.section-title .view-more:hover {
    text-decoration: underline;
}
.software-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item:hover {
    background: #f8f9fa;
}
.faq-item-link {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #333;
    text-decoration: none;
    gap: 6px;
}
.faq-number {
    color: #999;
    font-size: 13px;
    min-width: 22px;
}
.faq-title {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}
.faq-item:hover .faq-title {
    color: #409eff;
}
.faq-badge {
    font-size: 10px;
    background: #ff9800;
    color: white;
    padding: 1px 5px;
    border-radius: 6px;
    font-weight: 500;
}
