
body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #f4fdf4; }
header { background: #064420; color: white; padding: 1em; display: flex; align-items: center; justify-content: space-between; }
nav a { color: white; margin: 0 10px; text-decoration: none; }
.hero { text-align: center; padding: 50px; background: #c8e6c9; }
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; padding: 20px; }
.product { background: white; padding: 10px; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); text-align: center; }
footer { background: #064420; color: white; text-align: center; padding: 1em; margin-top: 20px; }
