body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}
header {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
}
.logo {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 50px;
  height: auto;
}
h1 {
  margin: 0;
  font-size: 2em;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}
.product-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 250px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}
.product-card img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-card h2 {
  margin: 15px 0 10px;
  font-size: 1.2em;
  color: #333;
}
.product-card p {
  font-size: 0.95em;
  color: #666;
}
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
}