.testimonials-container {
    display: flex; /* Use flexbox for horizontal layout */
    gap: 20px; /* Space between items */
    justify-content: center; /* Center the testimonials horizontally */
    flex-wrap: wrap; /* Allow wrapping if there are too many items for one line */
  }

.testimonial {
    font-family: sans-serif;
    max-width: 410px;
    padding: 24px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);;
    position: relative;
    margin: 48px auto;
    text-align: center;
  }
  
  .author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -40px;
  }
  
  .testimonial-content {
    margin-top: 40px;
  }
  
  .author-info {
    margin-bottom: 16px;
  }
  
  .author-name {
    font-size: 14px;
    font-weight: 800;
    color: #4a4a4a;
  }
  
  .author-position {
    font-size: 12px;
    color: #9e9e9e;
    margin-top: 4px;
  }
  
  .testimonial-details {
    margin-top: 16px;
  }
  
  .testimonial-title {
    font-size: 18px;
    font-weight: 800;
    color: #4a4a4a;
    margin-bottom: 8px;
  }
  
  .testimonial-text {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
  }
  
  .testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 16px;
  }
  
  .star {
    width: 20px;
    fill: #facc15; /* Yellow star color */
  }
  
  .star.empty {
    fill: #CED5D8; /* Gray color for the empty star */
  }
  
