body {
    font-family: Arial, sans-serif;
    margin: 0 0 100px 0;
    padding: 0;
  }

  section {
    padding: 20px;
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }

  #links a {
    display: inline-block;
    margin-right: 10px;
  }

  #links img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  .title {
    width: 40%;
  }

  .title h2 {
    font-size: 13pt;
    margin: 5px 0 5px 0;
  }

  .items {
    display: flex;
    flex-direction: column;
    width: 60%;
  }

  .item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background: #ffffff;
    padding: 10px;
    border-radius: 4px;
  }

  .item img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: 4px;
  }

  .item h3 {
    margin: 0 0 5px 0;
    font-size: 10pt;
  }

  .item p {
    margin: 0;
    color: #00000066;
  }

  a {
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  /* Responsive design adjustments */
  @media (max-width: 768px) {
    .item,
    .project {
      flex-direction: column;
      align-items: flex-start;
    }

    .items {
      width: 100%;
    }

    .item img,
    .project img {
      margin-bottom: 10px;
    }

    .title h2 {
      padding: 10px;
    }

    section {
      flex-direction: column;
      justify-content: flex-start;
    }
  }