/* 客户评价样式 */
.testimonials {
    background-color: #f8f8f8;
}

.testimonial-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    margin-top: -30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    flex: 1;
}

.quote-icon {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #2e7d32;
}

.testimonial-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 15px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: #333;
    font-size: 1rem;
}

.author-info p {
    margin: 5px 0 0;
    color: #777;
    font-size: 0.9rem;
}

/* 响应式样式 */
@media screen and (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .testimonial-subtitle {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
