body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #e0f7fa, #fce4ec);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #333;
}

.profile-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  padding: 30px 25px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  border: 1px solid #e0f7fa;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.profile-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.profile-card h1 {
  font-size: 24px;
  margin-bottom: 5px;
}

.profile-card h2 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #007acc;
}

.profile-card h3 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #007acc;
  border-bottom: 1px solid #e0f7fa;
  padding-bottom: 4px;
}

.profile-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-card ul.info {
  margin-bottom: 10px;
}

.profile-card ul.skills {
  margin-bottom: 10px;
}

.profile-card li {
  font-size: 14px;
  margin-bottom: 6px;
  text-align: left;
}

.profile-card p {
  font-size: 14px;
  margin-bottom: 10px;
  text-align: left;
}

#social {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

#social a {
  color: #007acc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

#social a:hover {
  color: #005fa3;
  text-decoration: underline;
}

button {
  background-color: #007acc;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #005fa3;
}