body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f2f2f2;
}

header {
  background: #003366;
  color: white;
  padding: 20px;
  text-align: center;
}

nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 50px;
  background: url('image/hero.jpg') no-repeat center center/cover;
  color: white;
}

.hero .btn {
  background: #ff6600;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.destinations {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 15px;
  width: 200px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 5px;
}

.booking-form {
  display: flex;
  justify-content: center;
  padding: 40px;
}

form {
  background: white;
  padding: 25px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

form label {
  display: block;
  margin-top: 10px;
}

form input, form select, form button {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  background: #28a745;
  color: white;
  border: none;
  margin-top: 15px;
  cursor: pointer;
}

.confirmation {
  text-align: center;
  padding: 50px;
}

.confirmation .btn {
  display: inline-block;
  margin-top: 20px;
  background: #007bff;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
