header {
  background: #ffffff;
  color: #275624;
  padding: 15px 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-section {
  background: none;
  padding: 0;
}

.logo-section img.main-logo {
  height: 65px;
}

.menu-section a {
  color: #275624;
  margin: 0 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.2s ease;
}

menu-section a:hover {
  color: #3aa56a;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #333;
}

main { text-align: center; padding: 60px 20px; }

h1, h2 { color: #275624; }

.product-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.product img { height: 100px; }
.product1 img { height: 50px; }

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background: #275624;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover { background: #3aa56a; }

footer {
  background: #275624;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}
