body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #245ab1, #c2e9fb);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 85%;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 40px;
  margin: 30px 0;
}

.profile {
  text-align: center;
  margin-bottom: 25px;
}

.profile img {
  border-radius: 50%;
  width: 160px;
  height: 160px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.profile h1 {
  margin: 15px 0 5px;
  color: #1e3d59;
}

.profile p {
  margin: 4px 0;
  color: #333;
}

.section {
  margin-top: 25px;
}

.section h2 {
  color: #0077b6;
  border-left: 5px solid #0077b6;
  padding-left: 10px;
  margin-bottom: 10px;
}

.section p, .section li {
  color: #333;
  line-height: 1.6;
}

ul {
  list-style: disc;
  margin-left: 25px;
}

.social-section {
  margin-top: 40px;
  text-align: center;
}

.social-section h2 {
  color: #0077b6;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1e3d59;
  background: #e8f1f5;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.social-links a:hover {
  background: #0077b6;
  color: white;
  transform: scale(1.05);
}