
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fffafc;
  color: #333;
}
header {
  background-color: #ffcad4;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.categories {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  max-width: 1000px;
  margin: auto;
}
.category {
  background-color: #ffe5ec;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.category:hover {
  transform: scale(1.02);
}
.category img {
  width: 250;
  height: 250;
  object-fit: cover;
}
.category-content {
  padding: 20px;
  flex: 1;
}
.category-content h3 {
  margin-top: 0;
  color: #c9184a;
}
.category-content a {
  color: #6a040f;
  text-decoration: none;
  font-weight: bold;
}
footer {
  text-align: center;
  padding: 20px;
  background: #ffcad4;
  margin-top: 30px;
}
