body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f4f4f4 60%, #e0e7ff 100%);
  color: #333;
  line-height: 1.6;
}
header {
  background: #1a1a1a;
  color: #fff;
  padding: 2rem 2rem 1.5rem 2rem;
  text-align: center;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  position: relative;
}
.profile-pic {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  background: #fff;
  display: block;
  margin: 0 auto 18px auto;
  position: static;
  left: unset;
  top: unset;
  transform: none;
}
.header-content {
  margin-top: 0;
}
header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}
header p {
  font-style: italic;
  font-size: 1.1rem;
  color: #b3b3b3;
}
.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}
section {
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(30,64,175,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  transition: box-shadow 0.2s;
}
section:hover {
  box-shadow: 0 6px 32px rgba(30,64,175,0.13);
}
h2 {
  color: #3b5bdb;
  border-bottom: 2px solid #e0e7ff;
  padding-bottom: 0.5rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
ul {
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.contact {
  background: linear-gradient(90deg, #e0e7ff 60%, #b2d0ff 100%);
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,64,175,0.10);
  border: 1.5px solid #3b5bdb22;
}
.contact a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.contact a:hover {
  color: #1a237e;
  text-decoration: underline;
}
.icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
  width: 1.1em;
  height: 1.1em;
  fill: #3b5bdb;
}
@media (max-width: 600px) {
  .container {
    padding: 0.5rem;
  }
  section {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .profile-pic {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
  .header-content {
    margin-top: 0;
  }
}
.button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #0077cc;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #005fa3;
}