.hero {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: hsl(220, 17%, 90%);
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
  }
  
  .testimonials-section {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #59c4c5, #7b57a5);
    color: white;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  
  .testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
  }
  
  .testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    color: #333;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  
  .author-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #59c4c5;
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
  }
  
  .testimonial-author {
    font-size: 0.9rem;
    font-weight: 500;
    color: #7b57a5;
    align-self: center;
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.8rem;
    }
  
    .testimonial-text {
      font-size: 0.95rem;
    }
  }

  /* Design Number CSS */
 
  .testimonial {
    max-width: 600px;
    background-color: #ffffff;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #66c2b3; 
    margin-right: 15px;
  }
  
  .testimonial-name {
    font-size: 1.2rem;
    color: #474747;
    margin: 0;
  }
  
  .testimonial-role {
    font-size: 0.9rem;
    color: #6b6b6b;
  }
  
  .testimonial-text2 {
    font-size: 1rem;
    line-height: 1.5;
    color: #555555;
    font-style: italic;
    padding-left: 10px;
    margin: 0;
  }
  