body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.topbar {
  background: #0b3d1c;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: white;
}

.nav a {
  margin-left: 15px;
  text-decoration: none;
}

.call-btn {
  background: green;
  color: white;
  padding: 8px 15px;
}

.hero {
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1598514982526-2f2d8c4e2f41') center/cover;
}

.overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  color: white;
  padding: 60px;
}

.green {
  color: #7ed957;
}

.btn {
  display: inline-block;
  background: green;
  color: white;
  padding: 12px 20px;
  margin-top: 15px;
}

.btn.light {
  background: white;
  color: black;
}

section {
  padding: 60px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.card {
  background: #f4f4f4;
  padding: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

.reviews {
  background: #f0f0f0;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

footer {
  background: #0b3d1c;
  color: white;
  padding: 20px;
}