body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  color: #222;
  background: #fafafa;
}

.hero {
  background: url('hero-image.jpg') center/cover no-repeat;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  text-align: center;
  color: white;
  border-radius: 8px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.fade-in-delay {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.5s;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.content {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.block {
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.block.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.block h2 {
  color: #256D85;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

table th, table td {
  border: 1px solid #ccc;
  padding: 0.5rem;
  text-align: center;
}

.note {
  font-size: 0.85rem;
  color: #666;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
  font-size: 0.85rem;
}

.pulse {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(37,109,133, 0); }
  50% { box-shadow: 0 0 20px rgba(37,109,133, 0.5); }
}