body {
    font-family: "Montserrat", sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
  }
  .testimonial-section {
    text-align: center;
    padding: 6px 20px;
  }
  .testimonial-section h2 {
    font-size: 2.5rem;
    color: #003b4d;
    margin-bottom: 10px;
    margin-top: 1rem;
  }
  .testimonial-section p {
    color: #666;
    margin-bottom: 30px;
    margin-top: 1rem;
  }
  .testimonial-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  .testimonial-card.dark {
    background-color: #003b4d;
    color: white;
  }
  .testimonial-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #3f99df;
  }
  .testimonial-card.dark h3 {
    color: white;
  }
  .testimonial-card p {
    font-size: 0.95rem;
    color: #333;
  }
  .testimonial-card.dark p {
    color: white;
  }
  .hidden {
    display: none;
  }
  .btn-container {
    margin-top: 20px;
    display: flex
;
    align-items: center;
    justify-content: center;
  }
  .see-more-btn {
    background-color: #003b4d;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
  }
  .see-more-btn:hover {
    background-color: #005670;
  }

  
  @media (max-width: 1024px) {
    .testimonial-container {
      grid-template-columns: 1fr 1fr;
    }
    .testimonial-section h2{
      font-size: 1em;
    }

    .testimonial-card h3{
      font-size: 1em;
    }
  }
  @media (max-width: 768px) {
    .testimonial-container {
      grid-template-columns: 1fr;
    }
  }