.faq-section {
    padding: 40px 20px;
    background-color: #f8f9ff;
}

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

.faq-content {
    display: flex;
    gap: 30px;
}

.faq-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #e0e4ef;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

.faq-item:hover {
    background-color: #eef0fa;
}

.faq-item:hover .faq-title {
    color: #001488;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #001488, #3355cc);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 14px;
    margin-top: 2px;
}

.faq-title {
    flex: 1;
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* 响应式 */
@media screen and (max-width: 992px) {
    .faq-section {
        padding: 30px 15px;
    }

    .faq-content {
        gap: 20px;
    }

    .faq-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
        margin-right: 12px;
    }

    .faq-title {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .faq-content {
        flex-direction: column;
        gap: 0;
    }

    .faq-item {
        padding: 14px 0;
    }

    .faq-title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

@media screen and (max-width: 480px) {
    .faq-section {
        padding: 25px 10px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
        margin-right: 10px;
    }

    .faq-title {
        font-size: 13px;
    }
}
