body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f4f4;
  color: #222;
  line-height: 1.6;
}
header {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 40px 20px;
}
header h1 {
  margin: 0;
  font-size: 2.5em;
}
nav {
  background: #34495e;
  text-align: center;
  padding: 10px;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
}
nav a:hover {
  text-decoration: underline;
}
nav a.lang {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  padding: 2px 8px;
}
main {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
}
section {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}
h2 {
  color: #2c3e50;
  margin-top: 0;
}
.intro {
  margin: 0;
  font-size: 1.1em;
}
.photo {
  margin: 0 0 20px;
}
.photo img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 3px solid #2c3e50;
}
.timeline li {
  position: relative;
  padding: 0 0 16px 20px;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #2c3e50;
}
.timeline .year {
  display: block;
  font-size: 0.9em;
  color: #777;
}
.timeline .team {
  font-weight: bold;
  font-size: 1.15em;
}
.timeline p {
  margin: 4px 0 0;
}
.timeline .badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f5e6b3;
  color: #5c4500;
  font-weight: bold;
  font-size: 0.95em;
}
.timeline-photo {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin-top: 10px;
  border-radius: 8px;
}
.timeline .caption {
  display: block;
  font-size: 0.85em;
  color: #777;
  margin-top: 4px;
}
.positions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.position {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
}
.position h3 {
  margin: 0 0 6px;
  color: #2c3e50;
}
.position p {
  margin: 0;
}
footer {
  text-align: center;
  padding: 20px;
  color: #777;
}
