:root {
    --primary-color: #2A2B2E;
    --secondary-color: #465947;
    --text-color: #333;
  }
  
  /* Testimonials container */
  .testimonials {
    margin: 50px 200px;
    text-align: center;
  }
  
  .testimonials h1 {
    font-size: 2vw;
    color: #f0F0F0;
    margin-bottom: 0.5em;
    position: relative;
  }
  
  .testimonials h1::after {
    content: '';
    width: 60px;
    height: 4px;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  .testimonials .text {
    font-size: 1.5vw;
    color: #f0F0F0;
    margin-bottom: 40px;
  }
  
  /* Reviews grid */
  .reviews {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  /* Single review card */
  .review {
    background-color: #f0F0F0;
    padding: 20px;
    margin: 5px;
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    box-sizing: border-box;
    border-radius: 20px;
    min-height: 300px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .review:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Rating */
  .review .stars {
    font-size: 1.2vw;
    color: #2A2B2E;
    margin-bottom: 10px;
  }
  
  /* Review content */
  .review .review-text {
    flex: 1;
    font-size: 1vw;
    color: #2A2B2E;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .review .name,
  .review .time {
    font-size: 0.9vw;
    color: #2A2B2E;
    margin: 0;
    text-align: center;
  }
  
  /* Responsieve aanpassingen */
  @media (max-width: 1300px) {
    .testimonials h1 {
      font-size: 2.5vw;
    }
    .testimonials .text {
      font-size: 1.5vw;
    }
    .reviews {
      margin-top: 50px;
    }
    .review {
      flex: 1 1 calc((100% / 3) - 20px);
      max-width: calc((100% / 3) - 20px);
    }
    .review .review-text {
      font-size: 1.2vw;
    }
  }
  
  @media (max-width: 1100px) {
    .testimonials h1 {
      font-size: 3vw;
    }
    .testimonials .text {
      font-size: 2vw;
    }
    .testimonials {
      margin: 50px 100px;
    }
    .review .review-text {
      font-size: 1.5vw;
    }
  }
  
  @media (max-width: 1000px) {
    .testimonials h1 {
      font-size: 3.5vw;
    }
    .testimonials .text {
      font-size: 2.5vw;
    }
    .testimonials {
      margin: 50px 10px;
    }
    .review {
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
    }
    .review .review-text {
      font-size: 2vw;
    }
  }
  
  @media (max-width: 700px) {
    .testimonials h1 {
      font-size: 4vw;
    }
    .testimonials .text {
      font-size: 3vw;
    }
    .testimonials {
      margin: 50px 10px;
    }
    .review .review-text {
      font-size: 2.5vw;
    }
  }
  
  @media (max-width: 500px) {
    .testimonials h1 {
      font-size: 5vw;
    }
    .testimonials .text {
      font-size: 4vw;
    }
    .review {
      flex: 1 1 100%;
      max-width: 100%;
    }
    .review .review-text {
      font-size: 3vw;
    }
    .review .stars,
    .review .name,
    .review .time {
      font-size: 3vw;
    }
  }