* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: #222;
  padding: 40px 16px;
}

.card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.name {
  margin: 0 0 4px;
  font-size: 1.6rem;
}

.title {
  margin: 0 0 20px;
  color: #666;
  font-size: 0.95rem;
}

.bio {
  margin: 0 0 32px;
  line-height: 1.7;
  color: #444;
  font-size: 0.95rem;
}

.section {
  text-align: left;
  margin-bottom: 28px;
}

.section h2 {
  font-size: 1rem;
  margin: 0 0 12px;
  color: #333;
  border-left: 4px solid #333;
  padding-left: 8px;
}

.skills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skills li {
  background: #f0f0f2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.timeline .year {
  color: #888;
  margin-right: 8px;
}

.links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.links a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
}

.links a:hover {
  border-color: #333;
}
