/* Styles for testimonial page */
.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 1rem;
}

.testimonial-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.testimonial-item h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #007bff;
}

.testimonial-item h3 small {
    font-weight: 400;
    color: #6c757d;
}

.testimonial-item p {
    font-size: 1rem;
    color: #343a40;
    margin-bottom: 1rem;
}

.testimonial-item img {
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    width: 120px;
    height: 120px;
    border: 3px solid #007bff;
}

.testimonial-item hr {
    border-top: 1px solid #dee2e6;
    margin-top: 1rem;
}
