body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

header {
  background: #222;
  color: white;
  padding: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  font-size: 24px;
  cursor: pointer;
}

.menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #333;
}

.menu.active {
  display: block;
}

.menu li a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
}

.menu li a:hover {
  background: #444;
}

.section {
  padding: 20px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.item {
  background: white;
  padding: 10px;
  margin: 10px;
  text-align: center;
  width: 45%;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.item img {
  width: 100%;
  border-radius: 10px;
}

.contact-section input,
.contact-section textarea {
  width: 90%;
  padding: 10px;
  margin: 5px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-section button {
  padding: 10px 20px;
  background: #222;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
}
