body {
  background: #111;
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
}

.booking-container {
  width: 90%;
  max-width: 550px;
  margin: 40px auto;
  background: #181818;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.booking-container h1 {
  text-align: center;
  color: #00bcd4;
  margin-bottom: 10px;
}

.booking-container p {
  text-align: center;
  margin-bottom: 25px;
  opacity: 0.8;
}

.booking-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  font-size: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  background: #222;
  color: white;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

.booking-form textarea {
  height: 100px;
  resize: none;
}

.booking-form button {
  width: 100%;
  padding: 15px;
  background: #00bcd4;
  border: none;
  color: black;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.booking-form button:hover {
  background: #009eb3;
}

.footer-note {
  text-align: center;
  margin-top: 10px;
  opacity: 0.7;
  font-size: 14px;
}
