.testimonials h3 {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Space between testimonials */
    text-align: center;
}

.testimonial {
    background-color: #ecf6fd;
    padding: 20px;
    border-radius: 5px;
    margin: 10px;
    max-width: 300px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    color: #34495e;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #2c3e50;
}