body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #0b1e3c;
  color: white;
  padding: 20px 40px;
}

header h1 {
  margin: 0;
  font-size: 2em;
}

header p {
  margin-top: 5px;
  font-size: 1.1em;
}

nav {
  background-color: #102a4d;
  padding: 10px 40px;
}

nav a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
}

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

main {
  padding: 40px;
  line-height: 1.8;
}

section {
  margin-bottom: 40px;
}

footer {
  background-color: #0b1e3c;
  color: white;
  text-align: center;
  padding: 20px;
}

.highlight {
  color: #00d9ff;
}

ul {
  padding-left: 20px;
}

.member,
.project,
.paper {
  margin-bottom: 15px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.team-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #00d9ff;
}

.team-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2em;
  color: #0b1e3c;
}

.team-card .title {
  font-weight: bold;
  color: #666;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #444;
}

.team-card.other {
  background-color: #f3f8fc;
}

#publications h3 {
  color: #0b1e3c;
  font-size: 1.2em;
  margin-top: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.paper {
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 3px solid #00d9ff;
  font-size: 0.95em;
  line-height: 1.6;
}
