body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #050f1f;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.contact-card {
  background-color: #0a0a30;
  border: 1px solid #102a52;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
  padding: 24px 32px;
  max-width: 350px;
  text-align: center;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid #2b7af1;
}

.contact-card h2 {
  color: #004a99;
  margin-bottom: 8px;
}

.contact-card p {
  color: #336699;
  margin: 4px 0;
}

.contact-card a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}
