body {
  font-family: sans-serif;
  margin: 0;
  background: #fdf8f1;
  color: #333;
}

.site-header {
  background: #fff;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.site-header .logo {
  font-weight: bold;
  font-size: 1.2em;
}

.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
}

.site-header nav a {
  text-decoration: none;
  color: #444;
}

.hero {
  position: relative;
  text-align: center;
}

.hero h1 {
  position: absolute;
  bottom: 1em;
  left: 0;
  right: 0;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 1em;
  font-size: 2em;
}

.section {
  padding: 3em 1em;
  max-width: 960px;
  margin: auto;
}

.icon-list {
  display: flex;
  justify-content: space-around;
  font-size: 1.1em;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.staff-list {
  display: flex;
  gap: 2em;
}

.staff {
  text-align: center;
}

.site-footer {
  text-align: center;
  padding: 1em;
  background: #eee;
  font-size: 0.9em;
}
