    .container {
      max-width: 1200px;
      margin: auto;
      padding: 2rem;
    }

   h1 {

      text-align: center;
      margin: 2rem;
      color: var(--accent);
    }

    .testimonials-grid {
    	
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      background-color: #FFF;
    }

    .testimonial {
    	height: 320px;
      background: var(--card-bg);
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    .testimonial p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1rem;
      
  }

    .author {
      font-weight: bold;
      font-size: 0.95rem;
      color: #555;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .author img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

        .testimonial-content {
      padding: 1.5rem;
      overflow-y: auto;
    }

        .testimonial-content::-webkit-scrollbar {
      width: 6px;
    }

    .testimonial-content::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.1);
      border-radius: 4px;
    }
