* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(to right, #fbc2eb, #fcd5ce);
  color: #333;
  min-height: 100vh;
}

.header {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff0f5;
}

.profile-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tagline {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

.container {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.card h2 {
  background: #ffe4ec;
  color: #c2185b;
  padding: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.card h2:hover {
  background: #ffc1d9;
}

.card .content {
  display: none;
  padding: 15px 20px;
  color: #444;
}

.card .content ul {
  list-style: none;
  padding-left: 0;
}

.card .content ul li {
  margin-bottom: 10px;
}

.socials {
  margin-top: 15px;
}

.socials a {
  margin-right: 10px;
  background-color: #c2185b;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.socials a:hover {
  background-color: #e91e63;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background-color: #fff0f5;
  margin-top: 40px;
}