* {
    box-sizing: border-box;
  }

  .profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 20px 0;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.about-content .profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.about-content p {
  margin: 0;
  line-height: 1.6;
  /* Remove this if it's smaller than 16px */
  /* font-size: 1.1em; */
}


  body {
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px; /* Ensures base size across the site */
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

  header {
    background: #004080;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
  }
  header h1 {
    margin: 0;
    font-weight: 700;
    font-size: 2.5rem;
  }
  header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
  main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  section {
    margin-bottom: 3rem;
  }
  h2 {
    color: #004080;
    border-bottom: 2px solid #004080;
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
  }
  ul {
    list-style-type: none;
    padding-left: 0;
  }
  li {
    background: #e8eef7;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.05);
  }
  a {
    color: #004080;
    text-decoration: none;
    font-weight: 600;
  }
  a:hover {
    text-decoration: underline;
  }
  footer {
    text-align: center;
    color: #777;
    padding: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #ddd;
  }

  .download-btn {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #45a049;
}


  /* Responsive */
  @media (max-width: 600px) {
    header h1 {
      font-size: 1.8rem;
    }
  }