body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
}
header {
  background: #e91e63;
  color: white;
  padding: 1rem;
  text-align: center;
}
nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
#hero {
  text-align: center;
  padding: 2rem;
  background: #ffe6eb;
}
#profiles {
  padding: 2rem;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.profile-card {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}
.profile-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: white;
}