body {
  background: #0b0c0f;
  color: #e7e9ee;
  font-family: Inter, sans-serif;
  margin: 0;
  line-height: 1.6;
}

/* Main container */
.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 20px 64px;
  text-align: center;
}

.about {
  text-align: left;
}

/* Header styles */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #6ea8fe;
}

h1 {
  font-size: 2.5em;
  margin: 0;
}

.subtitle {
  color: #a4a8b3;
  font-weight: 600;
}

/* Contact navigation */
.contact {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact a {
  color: #e7e9ee;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid #1e2129;
  border-radius: 10px;
}

.contact a:hover {
  background: #13151a;
  border-color: #6ea8fe;
}

/* Section titles */
.section-title {
  margin-top: 40px;
  font-size: 18px;
  text-transform: uppercase;
  color: #a4a8b3;
  text-align: left;
}

/* Grid layout for cards */
.grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

/* Card styles */
.card {
  border: 1px solid #1e2129;
  background: #13151a;
  border-radius: 14px;
  padding: 16px;
  text-align: left;
}

/* Organization header */
.org {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.org h3 {
  margin: 0;
  font-size: 18px;
}

.org .when {
  font-size: 13px;
  color: #a4a8b3;
}

/* Role styling */
.role {
  margin: 6px 0 10px;
  font-weight: 600;
}

/* Bullet points */
.bullets {
  margin: 0;
  padding-left: 18px;
  color: #a4a8b3;
}

.bullets li {
  margin: 6px 0;
}

/* Footer */
footer {
  margin-top: 48px;
  color: #a4a8b3;
  font-size: 14px;
}