body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #111;
  color: white;
  padding: 20px 0;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav li {
  margin: 0 10px;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 10px;
}

nav a:hover, nav a.active {
  background: #444;
  border-radius: 5px;
}

.hero {
  background: url('https://images.unsplash.com/photo-1519744792095-2f2205e87b6f') no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 3em;
}

.btn {
  background: #f04e30;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
}

.page-section {
  padding: 60px 0;
}

.services-list {
  list-style: none;
  padding-left: 0;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-form input,
.booking-form textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.booking-form button {
  background: #f04e30;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  .hero h2 {
    font-size: 2em;
  }
}
