body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: white;
  position: sticky;
  top: 0;
}

.navbar a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

.hero {
  height: 90vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
}

.hero-text {
  margin-left: 10%;
  max-width: 500px;
}

.hero h1 {
  font-size: 40px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #b88c5a;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.products {
  padding: 60px 20px;
  text-align: center;
}

.grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 280px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.card img {
  width: 100%;
}

.about {
  background: #f9f9f9;
  padding: 60px;
}

.cta {
  background: #2d2d2d;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.contact {
  text-align: center;
  padding: 60px 20px;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}