body {
  margin:0;
  font-family: Arial, sans-serif;
  line-height:1.6;
}

header {
  background:#1b5e20;
  color:#fff;
  padding:15px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

nav a {
  color:#fff;
  margin-left:20px;
  text-decoration:none;
}

.hero {
  background:#f4f4f4;
  text-align:center;
  padding:60px 20px;
}

.btn {
  background:#1b5e20;
  color:white;
  padding:12px 25px;
  text-decoration:none;
  display:inline-block;
  margin-top:15px;
}

.section {
  padding:40px 20px;
  max-width:1000px;
  margin:auto;
}

.gray {
  background:#f9f9f9;
}

.features li {
  list-style:none;
  padding:8px 0;
}

.form input, .form textarea {
  width:100%;
  padding:10px;
  margin-bottom:10px;
}

.form button {
  background:#1b5e20;
  color:white;
  border:none;
  padding:12px;
  width:100%;
}

footer {
  background:#222;
  color:white;
  text-align:center;
  padding:10px;
}
.footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 25px 0;
}

.social-icons {
  margin: 15px 0;
}

.social-icons a {
  color: white;
  font-size: 22px;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #f4b400;
}


.whatsapp {
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  color:white;
  font-size:24px;
  padding:15px;
  border-radius:50%;
  text-decoration:none;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}


