:root {
  --lavender: #9470b8;
  --lavender-light: #d9cfe6;
  --text-dark: #333;
  --bg-light: #f9f8f5;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav a {
  display: inline-block;
  margin: 0 12px;
  text-decoration: none;
  color: var(--lavender);
  font-weight: bold;
}

nav a:hover {
  color: #6a4f8a;
}

.hero {
  text-align: center;
  padding: 2rem;
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 2rem 1rem;
}

.card {
  background: white;
  padding: 1.5rem;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.article-card {
  background: white;
  padding: 2rem;
  margin: 1rem auto;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.fact-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 2rem auto;
}

.fact-list li {
  background: var(--lavender-light);
  margin: 8px 0;
  padding: 12px 16px;
  border-left: 5px solid var(--lavender);
  border-radius: 4px;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #eee;
  margin-top: 2rem;
}
