body {
  font-family: Arial, sans-serif;
  background: #f0f4ff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 400px;
  text-align: center;
}
.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
h1 {
  margin: 10px 0 5px;
}
h2 {
  margin: 5px 0 15px;
  font-size: 18px;
  color: #555;
}
p {
  margin: 8px 0;
  font-size: 14px;
  color: #333;
}
a {
  color: #0077ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
