body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .container {
    padding: 20px;
  }
  
  .header-flex {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
  }
  
  .header-text {
    flex: 1;
  }
  
  h1 {
    font-size: 2.5em;
    margin: 0;
  }
  
  h2 {
    font-size: 1.8em;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-top: 30px;
  }
  
  p, ul {
    font-size: 1.1em;
  }
  
  ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  li {
    margin-bottom: 10px;
  }
  
  a {
    color: #1a73e8;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  .event-item {
    display: flex;
    margin-bottom: 10px;
  }
  
  .event-date {
    width: 120px;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .event-content {
    flex: 1;
  }





  .paper {
    align-items: baseline;
    background-color: #f5f5f5;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #ccc;
  }
  
  .paper-conference {
    color: green;
  }






  
  /* Responsive Design */
  @media (max-width: 600px) {
    .header-flex {
      flex-direction: column;
      text-align: center;
    }
  
    .profile-pic {
      margin-right: 0;
      margin-bottom: 20px;
    }
  
    h1 {
      font-size: 2em;
    }
  
    h2 {
      font-size: 1.5em;
    }
  
    p, ul {
      font-size: 1em;
    }
  
    .event-item {
      flex-direction: column;
    }
  
    .event-date {
      width: auto;
      margin-bottom: 5px;
    }
  }