body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
}
header {
  background: #e63946;
  color: white;
  padding: 20px;
  text-align: center;
}
header nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  background: #ffb703;
  padding: 60px 20px;
  text-align: center;
}
.hero h2 {
  font-size: 2em;
  margin-bottom: 10px;
}
section {
  padding: 40px 20px;
}
h3 {
  text-align: center;
  margin-bottom: 20px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}
.card a {
  text-decoration: none;
  color: #e63946;
  font-weight: bold;
}
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
footer .tiny {
  font-size: 0.8em;
  color: #ccc;
}
