  /* Custom styles for the slider */
  .Testo {
      font-family: 'Inter', sans-serif;
      background-color: #f0f4f8;
  }

  .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      height: auto;
  }

  .swiper-pagination-bullet-active {
      background-color: #4a90e2 !important;
  }

  /* Custom styles for the logo */
  .testimonial-logo {
      width: 50px;
      /* Adjust size as needed */
      height: 50px;
      /* Adjust size as needed */
      border-radius: 50%;
      /* Makes the image round */
      object-fit: cover;
      /* Ensures the image covers the area without distortion */
      margin-right: 1rem;
  }

  /* Responsive adjustments for testimonial cards */
  @media (max-width: 640px) {
      .swiper-slide .bg-white {
          padding: 1.5rem;
      }

      .testimonial-logo {
          width: 40px;
          height: 40px;
      }
  }