.reviews-section {
    padding: 0 0 20px;
    text-align: center;
    margin-bottom: 60px;
  }
  
  .reviews-heading {
    font-size: 20px;
    font-weight: 400;
    border-bottom: 3px solid #05A886;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-left: 2rem;
  }
  
  .review-item {
    /* background-color: #f9f9f9; */
    padding: 15px;
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    text-align: left;
  }
  
  .reviewer-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #212D56;
  }
  
  .review-text {
    font-size: 14px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 21px;
  }
  
  .stars {
    display: flex;
    gap: 5px;
  }
  
  .trustpilot-rating {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  
  .trustpilot-heading {
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }
  
  .trustpilot-image {
    width: 436px;
    height: 123px;
  }

@media screen and (max-width: 767px) {

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding-left: 2rem;
    }
        
}

@media screen and (max-width: 587px) {

    .reviews-section {
        display: none;
    }
        
}