body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: white;
  color: #333;
}

.navbar {
  display:flex;
  justify-content: space-between;
  padding: 12px 12px;
  background-color: #222;
  align-items: center;
}

.navbar .logo {
  height:200px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #fca311;
}

.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-text {
 position: absolute;
 top: 40%;
 left: 10%;
 color: white;
}

.btn {
  padding: 10px 20px;
  background: #fca311;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  background-color: wheat;
}

.feature img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

.feature h3 {
  text-align: center;
  margin-top: 10px;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}

