/* General Styling */
  
  .reviews-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    color: #ff7a00;
    margin-bottom: 30px;
  }
  
  /* Review Cards */
  .reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .review-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .review-item:hover {
    transform: scale(1.05);
  }
  
  .review-client-photo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  .review-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .review-content span {
    display: block;
    font-size: 0.9rem;
    color: #ff7a00;
    font-weight: bold;
  }
  
  /* Add Review Button */
  .add-review-btn {
    display: inline-block;
    background: #ff7a00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 30px;
  }
  
  .add-review-btn:hover {
    background: #e65c00;
  }
  
  /* Review Form Modal */
  .review-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  
  .review-form-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
  }
  
  .review-form-content input,
  .review-form-content textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
  }
  
  .review-form-content button {
    background: #ff7a00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .review-form-content button:hover {
    background: #e65c00;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
  }
  