body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  background: #fff;
  color: #111;
}

/* Top Navigation Bar */
.topbar {
  background: #00356B; /* Yale Blue */
  color: white;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar .name {
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.topbar .nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
}

.topbar .nav a:hover {
  text-decoration: underline;
}

/* Main Content Layout */
.bio-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 3em 2em;
  max-width: 1000px;
  margin: auto;
  gap: 40px;
}

/* Left column with photo and info */
.bio-left {
  flex: 1 1 280px;
  max-width: 300px;
  text-align: center;
}

.profile-pic {
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  margin-bottom: 1em;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.bio-left h2 {
  margin: 0.5em 0 0.2em;
}

.bio-left p {
  font-size: 0.95rem;
  color: #444;
  margin: 0.3em 0;
}

.buttons {
  margin-top: 1em;
}

.btn {
  display: inline-block;
  padding: 0.5em 1.2em;
  background: #00356B;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  margin: 0.4em 0.3em;
  font-size: 0.9rem;
}

.btn:hover {
  background: #002244;
}

/* Right column with text */
.bio-right {
  flex: 2 1 500px;
  min-width: 300px;
}

.bio-right p {
  line-height: 1.6;
  margin-bottom: 1em;
  font-size: 1rem;
}





