body {
  font-family: 'Merriweather', 'Times New Roman', serif;
  color: #222;
  background: #fafafa;
  margin: 0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 30px 0;
}

h1, h2, h3 {
  color: #003366;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  background: #f5f7fa;
  border-bottom: 1px solid #ccc;
  padding: 40px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #003366;
}

.subtitle {
  font-size: 1.1em;
  color: #444;
  margin: 0.2em 0 0.6em;
}

/* Publications */
.publications .pub {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.publications img {
  width: 130px;
  height: auto;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.publications h3 {
  margin-top: 0;
}

/* Experience */
.exp-item {
  margin-bottom: 20px;
}

/* Talks */
.talks ul {
  list-style: disc;
  padding-left: 25px;
}

/* Footer */
.footer {
  background: #f0f0f0;
  text-align: center;
  padding: 15px 0;
  color: #555;
  font-size: 0.9em;
}

