* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
    line-height: 1.6;
    background: #f4f4f9;
    color: #333;
  }

  header {
    background: #4a90e2;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
  }

  header h1 {
    margin-bottom: 0.2rem;
    font-weight: 700;
  }

  nav {
    margin-top: 0.5rem;
  }

  nav a {
    color: white;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  nav a:hover {
    color: #d1d9ff;
  }

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

  section {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
  }

  section:last-child {
    border-bottom: none;
  }

  h2 {
    color: #4a90e2;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4a90e2;
    display: inline-block;
    padding-bottom: 0.3rem;
  }

  p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  ul.skills-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-left: 0;
  }

  ul.skills-list li {
    background: #e1e9ff;
    color: #2a3d66;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .projects {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 1.5rem;
  }

  .project {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
    padding: 1rem;
    transition: transform 0.2s ease;
  }

  .project:hover {
    transform: translateY(-5px);
  }

  .project h3 {
    margin-bottom: 0.5rem;
    color: #2a3d66;
  }

  .project p {
    font-size: 1rem;
    color: #555;
  }

  footer {
    text-align: center;
    padding: 1rem 0;
    background: #4a90e2;
    color: white;
    margin-top: 3rem;
  }

  .contact-info a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .contact-info a:hover {
    color: #002366;
  }

  @media (max-width: 600px) {
    nav a {
      display: block;
      margin: 0.3rem 0;
    }
  }