* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #222;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a0a0a;
  color: white;
}

.nav-links a {
  color: white;
  margin-left: 2rem;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1518998053900-3b9e0b6f2a3d?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover;
  color: white;
  text-align: center;
  padding: 180px 20px 100px;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
}

.silver { color: #c0c0c0; }
.gold { color: #ffd700; }

.tagline { font-size: 1.5rem; margin-bottom: 2rem; }

.btn-primary {
  background: #ffd700;
  color: #000;
  padding: 14px 32px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}

.section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.bg-light { background: #f8f9fa; }
.bg-gold { background: linear-gradient(135deg, #ffd700, #b8860b); color: #000; }

h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.candidate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.facts li {
  margin: 15px 0;
  font-size: 1.1rem;
}

.donation-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.tier {
  background: white;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.center { text-align: center; }

footer {
  background: #0a0a0a;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.small { font-size: 0.85rem; opacity: 0.7; margin-top: 20px; }

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .nav-links { display: none; }
}