    body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0a3d62, #82ccdd);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: center;
  padding: 40px;
  width: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
}

h1 {
  margin: 15px 0 5px;
  font-size: 24px;
}

h2 {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 18px;
  color: #c8d6e5;
}

.contact p {
  margin: 5px 0;
}

.buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  background: #1e90ff;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  margin: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #0c71c3;
}

footer {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.7;
}