* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Public Sans', sans-serif;
  background-color: #fff5ee;
  color: #333;
  line-height: 1.6;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 30px;
  background-color: white;
  border-bottom: 1px solid #eee;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
}

nav.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav.nav a {
  text-decoration: none;
  color: #ff5a00;
  font-weight: bold;
}

.search-container {
  flex: 1;
  max-width: 250px;
}

.search-container input[type="text"] {
  width: 100%;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ff5a00;
  border-radius: 3px;
  transition: 0.3s ease;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

main h1 {
  color: #ff5a00;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

main p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feature {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.feature img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.feature h2 {
  color: #ff5a00;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

footer {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  font-size: 0.9rem;
}

footer a {
  text-decoration: none;
  color: #ff5a00;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav.nav {
    display: none;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 10;
  }

  nav.nav ul {
    flex-direction: column;
    padding: 10px 20px;
  }

  nav.nav.active {
    display: block;
  }

  .search-container {
    width: 100%;
    margin-top: 10px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .features {
    grid-template-columns: 1fr;
  }
}
