  /* Testimonial Section Styling */
    .testimonial-section {
      background-color: #f8f9fa; /* Light gray background */ 
    }

    .testimonial-card {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .testimonial-image {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .testimonial-content {
      flex-grow: 1;
    }

    .testimonial-quote {
      font-style: italic;
      color: #6c757d;
      margin-bottom: 10px;
    }

    .testimonial-author {
      font-weight: bold;
      color: #333;
    }