/* testimonials.css */
.testimonials {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.testimonials-header {
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.testimonials-header p {
    font-size: 1.2em;
    color: #666;
}

.testimonial-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.testimonial p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

.testimonial h4 {
    font-size: 1.2em;
    color: #333;
    font-weight: bold;
}