.testimonial {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 20px 0;
  }
  .testimonial .img-holder {
    text-align: center;
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-right: 10px;
  }
  .testimonial .img-holder img {
    max-width: 200px;
    max-height: 200px;
    width: 100%;
    height: auto
    object-fit: cover;
    border-radius: 0;
  }
  .testimonial .quote {
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
  .testimonial .quote .testimonial-quote {
    font-weight: 500;
    color: #0264dc;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
    position: relative;
  }
  .testimonial .quote .testimonial-quote::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -15px;
    background-image: none;
    display: block;
    width: 44px;
    height: 32px;
  }
/* Tablet responsiveness (screen width between 768px and 1024px) */
@media screen and (max-width: 1024px) {
    .testimonial {
        flex-direction: row; /* Keep the image and text in a row */
        align-items: flex-start;
        justify-content: flex-start; /* Distribute space between items */
    }

    .testimonial .img-holder {
        flex: 0 0 30%; /* Image container takes up 30% of the width */
        max-width: 30%; /* Keeps image container at 30% of width */
        margin-right: 10px; /* Adds space between image and text */
        align-self: felx-start;
    }

    .testimonial .quote {
        flex: 0 0 65%; /* Quote container takes up 65% of the width */
        max-width: 65%; /* Keeps the text container at 65% */
    }

    .testimonial .img-holder img {
        width: 100%; /* Makes the image responsive */
        height: auto; /* Keeps the rectangular shape */
        object-fit: cover; /* Prevents distortion */
    }
}

/* Mobile responsiveness (screen width below 768px) */
@media screen and (max-width: 768px) {
    .testimonial {
        flex-direction: column; /* Stack the image and text vertically */
        align-items: center; /* Center them vertically */
    }

    .testimonial .img-holder {
        flex: 0 0 80%; /* Image takes up more space on mobile/tablet */
        max-width: 80%; /* Allows the image to be larger */
        margin-right: 0; /* No margin between the image and text */
        margin-bottom: 20px; /* Adds space below the image */
    }

    .testimonial .quote {
        flex: 0 0 100%; /* Text takes up the full width on small screens */
        max-width: 100%;
    }

    .testimonial .img-holder img {
        width: 100%; /* Makes the image responsive */
        height: auto; /* Adjust height based on width */
    }
}