/* CSS cho ảnh khách hàng */
.customer-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    background-color: #f8f9fa;
}

/* Cải thiện hiển thị phần testimonial */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

/* Đảm bảo ảnh khách hàng hiển thị đúng */
.customer-photo {
    min-width: 70px;
    display: block;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1e3799;
}

.author-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #666;
}