.testimonials-container {
    text-align: center;
    padding: 60px 20px; 
}

.section-heading {
    font-size: 24px;
    margin: 0;
}

.section-description {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
}

.section-title {
    font-size: 36px;
    color: #000000;
    text-align: center;
    font-weight: 700;
    position: relative;
    font-family: "Montserrat", sans-serif;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Center text within each testimonial */
    margin: 20px;
}

.testimonial {
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 10px;
    padding: 25px;
    flex-basis: calc(33.33% - 20px);
    /* Three testimonials in a row on desktop */
}

.testimonial img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.rating {
    font-size: 20px;
    color: #ffdf00;
    margin-top: 10px;
}

.star {
    display: inline-block;
    margin-right: 5px;
}

.message {
    font-size: 16px;
    margin: 10px 0;
}

.author {
    font-style: italic;
}

/* Media Query for Mobile */
@media screen and (max-width: 767px) {
    .testimonials {
        flex-direction: column;
        /* One testimonial per row on mobile */
    }

    .testimonial {
        flex-basis: 100%;
        margin: 10px;
        /* Adjust margin for mobile view if needed */
        padding: 25px;
        /* Adjust padding for mobile view if needed */
    }
}