/* 客户评价区域样式 */
#testimonial-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-header {
    text-align: left;
    margin-bottom: 60px;
}

.testimonial-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 800px;
    margin-top: 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-item {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    flex: 1;
    padding: 30px;
}

.testimonial-name {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonial-image {
    width: 150px;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 响应式设计 */
@media (max-width: 992px) {
    #testimonial-section {
        padding: 80px 0;
    }
    
    .testimonial-subtitle {
        font-size: 16px;
    }
    
    .testimonial-name {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-header {
        text-align: center;
    }
    
    .testimonial-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    #testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-item {
        flex-direction: column;
    }
    
    .testimonial-image {
        width: 100%;
        height: 200px;
        order: -1;
    }
    
    .testimonial-content {
        padding: 20px;
    }
}
