* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
body {
  background-color: hsl(268, 100%, 97%);
  color: #333;
  line-height: 1.6;
  padding: 20px;
}
header {
  text-align: center;
  margin-bottom: 30px;
}
nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #d6336c;
  font-weight: bold;
}
nav a:hover {
  color: #9e1b4d;
}
.products {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.product {
  border: 1px solid #d6336c;
  border-radius: 8px;
  padding: 15px;
  width: 250px;
  text-align: center;
  background-color: #fff;
  box-shadow: 2px 2px 8px rgba(214, 51, 108, 0.2);
  transition: transform 0.3s ease;
}
.product:hover {
  transform: scale(1.05);
}
.product img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}
#contact {
  margin-top: 40px;
  text-align: center;
}
footer {
  margin-top: 50px;
  text-align: center;
  color: #999;
  font-size: 14px;
}
