:root {
  --primary-color: #ffd700;
  --light-primary: #fff9c4;
  --text-color: #333;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: var(--text-color);
  background: #fff;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.site-header {
  background: var(--primary-color);
  color: #000;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header nav a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

h1, h2, h3, h4 {
  color: #000;
}

a {
  color: var(--primary-color);
}

section {
  margin-bottom: 2rem;
}

.last-updated {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 2rem;
}

footer {
  background: var(--light-primary);
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

footer a {
  color: #000;
  text-decoration: none;
}
