.testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .title-primary {
    color: var(--primary-color);
    font-weight: bold;
  }
  
  .title-secondary {
    color: var(--secondary-color);
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .testimonial-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .testimonial-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
    min-height: 100px; /* Ensure consistent card height */
  }
  
  .testimonial-rating {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .testimonial-author {
    font-weight: bold;
    color: var(--secondary-color);
  }
  
  @media (max-width: 768px) {
    .testimonial-grid {
      grid-template-columns: 1fr;
    }
  
    .testimonial-card {
      padding: 20px;
    }
  
    .testimonial-icon {
      font-size: 36px;
    }
  
    .testimonial-text {
      font-size: 14px;
      min-height: auto;
    }
  
    .testimonial-rating {
      font-size: 16px;
    }
  }