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

header.hero {
  background: url('images/IndiaMap.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.products, .about, .contact {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.products h2, .about h2, .contact h2 {
  text-align: center;
  margin-bottom: 30px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.product {
  width: 45%;
  background: white;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.product img {
  max-width: 100%;
  border-radius: 4px;
  height: 257px;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

button {
  background: #007BFF;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
}

footer {
  text-align: center;
  background: #333;
  color: white;
  padding: 15px;
  margin-top: 40px;
}
