/* 家长心声 */
.testimonials {
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.parent-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.parent-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #f0f0f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .parent-photo img {
    transform: scale(1.1);
    border-color: #667eea;
}

.quote-icon {
    font-size: 3rem;
    color: #667eea;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.parent-info h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.parent-info span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
}

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