body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #f4f6f8;
  color: #333;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 20px 0;
}
.hero {
  background-color: #002244;
  color: white;
  padding: 60px 20px;
  text-align: center;
}
.hero-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.hero .text {
  text-align: center;
}
.social-icons {
  margin-top: 10px;
}
.social-icons a {
  color: #ffffff;
  font-size: 1.3rem;
  margin: 0 10px;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #66ccff;
}
h1 {
  margin-bottom: 10px;
  font-size: 2.5rem;
}
h2 {
  color: #002244;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}
.card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.job {
  margin-bottom: 20px;
}
ul {
  padding-left: 20px;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.grid span {
  background: #e1ecf4;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}
a {
  color: #005a9c;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
footer {
  text-align: center;
  background-color: #002244;
  color: white;
  padding: 15px;
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
  .card {
    padding: 15px;
  }
  .hero-content {
    flex-direction: column;
  }
}
