/* General */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background-color: #fff;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: flex-end;
  padding: 20px 40px 10px 40px;
  border-bottom: 1px solid #ccc;
}

.top-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
  font-size: 16px;
}

.top-links a:hover {
  text-decoration: underline;
}

/* Centered Wrapper */
.main-wrapper {
  display: flex;
  justify-content: center;
  padding: 80px 0 40px 0;
}

/* Main Layout */
.main-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 33vw;
}

/* Left Text */
.text-section h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.text-section p {
  font-size: 18px;
  line-height: 1.6;
}

/* Right Image */
.image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.headshot {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

/* Research Section */
.research-section {
  max-width: 40vw;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0 60px 0;
}

.research-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.research-lead {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

/* Footer Icons */
footer {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
}

footer a {
  color: #111;
  font-size: 28px;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #555;
}
