.reviews {
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
  }
  
  .reviews-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .review-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .review-header {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .review-info {
    display: flex;
    flex-direction: column;
  }
  
  .review-name {
    font-weight: bold;
    color: #222;
  }
  
  .review-date {
    font-size: 14px;
    color: #888;
  }
  
  .review-rating {
    color: #f5a623;
    font-size: 18px;
  }
  
  .review-text {
    font-size: 16px;
    color: #444;
    white-space: pre-line;
  }

  .reviews-footer {
    text-align: center;
    margin-top: 30px;
  }
  
  .show-all-reviews {
    display: inline-block;
    padding: 12px 24px;
    background-color: #F07261;
    color: white;
    border-radius: 10em;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .show-all-reviews:hover {
    background-color: #1e7100;
  }
  
  