body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .hero {
    background-color: #4a90e2;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  nav {
    background: white;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  nav a {
    text-decoration: none;
    color: #4a90e2;
    font-weight: bold;
  }
  
  main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  section {
    margin-bottom: 2rem;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background-color: #eee;
    font-size: 0.9rem;
  }
  
  .project {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  .project h3 {
    margin-top: 0;
  }

  .award-list {
    list-style: none;
    padding-left: 0;
  }
  
  .award-list li {
    position: relative;
    padding-right: 100px; /* leave space for year */
    margin-bottom: 12px;
    line-height: 1.6;
  }
  
  .award-list .year {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
    color: #666;
    white-space: nowrap;
  }