/* Base Styles */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 1.2rem;
  color: #555;
}

/* Content Sections */
section {
  margin-bottom: 50px;
}

h2 {
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

/* Papers */
.paper {
  margin-bottom: 25px;
}

.paper h3 {
  margin-bottom: 5px;
}

.authors, .venue {
  color: #555;
  margin: 3px 0;
}

.paper-link {
  margin-right: 10px;
  text-decoration: none;
}

/* Education */
.degree {
  margin-bottom: 20px;
}

.degree h3 {
  margin-bottom: 5px;
}

/* Contact */
.contact p {
  margin: 5px 0;
}

Paper Links
.paper-links {
  margin-top: 8px;
}

.paper-link {
  display: inline-block;
  margin-right: 12px;
  color: #1a73e8;
  text-decoration: none;
}

.paper-link:hover {
  text-decoration: underline;
}


.paper-list {
  counter-reset: paper-counter;
  padding-left: 0;
  list-style: none;
}

.paper {
  counter-increment: paper-counter;
  margin-bottom: 1.2em;
  position: relative;
  padding-left: 2em;
  line-height: 1.5;
}

.paper::before {
  content: counter(paper-counter) ".";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.paper-authors {
  font-weight: 500;
}

.paper-title {
  font-style: italic;
}

.paper-year {
  color: #555;
}

.paper-link {
  color: #1a73e8;
  text-decoration: none;
}

.paper-link:hover {
  text-decoration: underline;
}
