.booking-form-section {
    padding: 50px 0;
    background-color: #f9f9f9;
  }
  
  .booking-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .booking-form .form-group {
    margin-bottom: 20px;
  }
  
  .booking-form label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
  }
  
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .booking-form button {
    background: #28a745;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .booking-form button:hover {
    background: #218838;
  }
  