    * {
      padding: 0;
      margin: 0;
    }
    body {
      font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #fdfdfd;
      color: #111;
      margin: 0;
      line-height: 1.6;
    }
    li {
      margin: 6px 0px;
    }

    header, footer {
      text-align: center;
      padding: 2rem 1rem;
      background: #f0f4f8;
      border-bottom: 1px solid #e0e0e0;
    }

    footer {
      border-top: 1px solid #e0e0e0;
      font-size: 0.9rem;
      color: #555;
    }

    main {
      max-width: 900px;
      margin: 2rem auto;
      padding: 0 1rem;
    }

    h1, h2, h3 {
      margin: 1rem 0 0.5rem;
      font-weight: 600;
      color: #0b3d91;
    }

  a {
    color: #0366d6;
    text-decoration: none;
    background: rgba(3, 102, 214, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
  }

  a:hover {
    background: rgba(3, 102, 214, 0.2);
    transform: rotate(-1deg);
  }


    ul {
      padding-left: 1.2rem;
      margin: 0.5rem 0;
    }

    .section {
      margin-bottom: 3rem;
    }

    .contact a {
      display: inline-block;
      margin-right: 1rem;
    }

    .university, .awards, .countries {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 0.5rem;
      flex-wrap: wrap;
    }



.edu-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.95rem;
  color: #222;
}

.edu-info strong {
  font-size: 1rem;
  color: #0366d6;
}


    .work-item img, .university img, .awards img, .countries img {
  width: 50px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.countries img {
  width: 60px;
  height: 40px;
  object-fit: cover;
}

    .work-item img:hover, .university img:hover, .awards img:hover, .countries img:hover {
  transform: scale(1.1);
}


    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 0.5rem;
    }

    table th, table td {
      text-align: left;
      padding: 0.5rem;
      border-bottom: 1px solid #eee;
    }

    .highlight {
      background: #e0f0ff;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
    }

    @media (max-width: 600px) {
      body {
        font-size: 0.95rem;
      }
      .university, .awards, .countries {
        flex-direction: column;
        align-items: flex-start;
      }
    }




    .work-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.work-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.work-details {
  flex: 1;
}

.work-details strong {
  display: block;
  font-size: 1.05rem;
  color: #0b3d91;
  margin-bottom: 0.25rem;
}

.work-details span {
  display: block;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.4rem;
}

.work-details .date {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
}

.work-details p {
  margin-top: 0.4rem;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}




    .work-item {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.6s ease forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
