body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff9db;
  color: #333;
}
nav {
  background: #f2b8c6;
  padding: 12px;
  text-align: center;
  position: sticky;
  top: 0;
}
nav a {
  color: #000;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}
.banner {
  padding: 10px;
  text-align: center;
  background: #fef3c7;
  font-weight: bold;
}
.hero {
  text-align: center;
  padding: 20px;
  animation: fadeIn 2s ease;
}
.hero img {
  max-width: 600px;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.buttons {
  text-align: center;
  margin: 20px;
}
.buttons a {
  margin: 5px;
  padding: 10px 20px;
  background: #f2b8c6;
  text-decoration: none;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}
.buttons a:hover {
  background: #faacc0;
}
footer {
  margin-top: 40px;
  padding: 20px;
  background: #fff0f5;
  text-align: center;
  font-size: 14px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}