body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f9fc;
  color: #333;
}

.container {
  max-width: 600px;
  margin: 10vh auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h1 {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  color: #0051a2;
}

.tagline {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 1.5rem;
}

.intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact a {
  display: inline-block;
  margin: 0 10px;
  padding: 0.6rem 1.2rem;
  background: #0051a2;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.contact a:hover {
  background: #003e80;
}
.about {
  text-align: left;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}
.about h2 {
  color: #0051a2;
}
.profile-pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.about p {
  font-size: 1rem;
  line-height: 1.6;
}
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
  'Helvetica Neue', Arial, sans-serif;
