 /* Card */
    .testimonial-card {
      border-radius: 16px;
      box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.04);
      background: rgba(255, 255, 255, 1);
      padding: 40px;
    }

    .testimonial-quote-icon {
      position: absolute;
      left: 26px;
      top: 26px;
      font-size: 48px;
      color: #e5e7eb;
      font-family: Georgia, "Times New Roman", serif;
      line-height: 1;
    }
    .testimonial-quote-icon svg path {
      fill: #000000;
    }
    .testimonial-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 14px;
    }

    .testimonial-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      overflow: hidden;
    }
    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .testimonial-stars {
      color: #f59e0b;
      font-size: 18px;
      margin-top: 5px;
    }

    .testimonial-body {
      color: rgba(0, 0, 0, 1);
      font-family: "Inter", sans-serif;
      font-size: 16px;
      font-weight: 300;
      line-height: 23px;
      text-align: center;
    }

    .testimonial-name {
      color: rgba(0, 0, 0, 1);
      font-family: "Inter", sans-serif;
      font-size: 24px;
      font-weight: 600;
      line-height: 29px;
      text-align: center;
      margin-top: 12px;
    }

    /* Owl dots tweaks */
    .owl-theme .owl-dots .owl-dot span {
      width: 8px;
      height: 8px;
      margin: 5px 4px;
      background: #d1d5db;
    }

    .owl-theme .owl-dots .owl-dot.active span {
      background: #111827;
    }

    @media (max-width: 768px) {
      .testimonial-card {
        margin: 0 8px;
      }
    }