
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Cairo', sans-serif;
    }

    body {
      background: linear-gradient(135deg, #e0f7fa, #fdfcfa);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px;
    }

    .booking-container {
      background: white;
      width: 100%;
      max-width: 500px;
      padding: 40px 30px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 122, 143, 0.2);
      text-align: center;
    }

    .booking-container h2 {
      color: #007a8f;
      margin-bottom: 25px;
      font-size: 26px;
    }

    form {
      text-align: right;
    }

    label {
      display: block;
      margin: 10px 0 5px;
      font-weight: 600;
      color: #007a8f;
    }

    input, select {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
      margin-bottom: 15px;
      font-size: 16px;
    }

    button {
      width: 100%;
      padding: 12px;
      background: linear-gradient(90deg, #007a8f, #00b0cc);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      background: linear-gradient(90deg, #00b0cc, #007a8f);
      transform: scale(1.03);
    }

    .back {
      display: inline-block;
      margin-top: 20px;
      text-decoration: none;
      color: #007a8f;
      font-weight: 600;
    }

    .back:hover {
      text-decoration: underline;
    }
