.testimonial-item {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}
.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #f8f9fa;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-content {
    text-align: center;
}
.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #6c757d;
}
.testimonial-content h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}
.testimonial-content span {
    color: #7f8c8d;
    font-size: 0.9rem;
}
.rating {
    color: #ffc107;
    margin-bottom: 15px;
}