body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #fff;
}

header {
  background: #009688;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

header .container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.hero {
  background: linear-gradient(rgba(0,150,136,0.85), rgba(0,150,136,0.85)),
              url('https://images.unsplash.com/photo-1581579188871-45ea61f2a0c8?auto=format&fit=crop&w=1350&q=80')
              no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.btn {
  background: #fff;
  color: #009688;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  transition: 0.3s;
}

.btn:hover {
  background: #00796B;
  color: #fff;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.services {
  background: #f5f5f5;
}

.services h2, .about h2, .faq h2, .contact h2, .privacy h2, .booking h2 {
  color: #009688;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.service-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.about, .faq, .privacy, .contact, .booking {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  margin-bottom: 20px;
  text-align: left;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
}

input, select, textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
  width: 100%;
}

button {
  border: none;
  cursor: pointer;
}

footer {
  background: #009688;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
}
