* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  background: #fff;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

header {
  text-align: center;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff8c42;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

h1 {
  color: #ff5e00;
  margin-top: 15px;
  font-size: 1.8em;
}

h2 {
  font-weight: 400;
  color: #555;
}

section {
  margin-top: 25px;
}

h3 {
  color: #ff5e00;
  margin-bottom: 8px;
  font-size: 1.2em;
}

p {
  line-height: 1.6;
  color: #444;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  text-decoration: none;
  color: white;
  background: #ff8c42;
  border-radius: 50%;
  padding: 10px;
  margin: 0 5px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff5e00;
  transform: scale(1.1);
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9em;
  color: #555;
}

/* 🌐 Responsive Design */
@media (max-width: 600px) {
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 1.5em;
  }

  p {
    font-size: 0.95em;
  }

  .profile-photo {
    width: 100px;
    height: 100px;
  }
}
