body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #f0f4ff;
  color: #1e3a8a;
}
header {
  background-color: #1e40af;
  color: white;
  padding: 20px;
  text-align: center;
}
nav {
  background-color: #1d4ed8;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}
.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
}
.card img {
  width: 100%;
  border-radius: 10px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 10px;
}
.content, .contact {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}
.content img {
  max-width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}
footer {
  background-color: #1e40af;
  color: white;
  text-align: center;
  padding: 10px;
    }
