
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
.header {
  background: #ff4081;
  color: white;
  padding: 20px 0;
  text-align: center;
}
.header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.header nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  background: url('https://source.unsplash.com/1600x600/?zumba,dance') no-repeat center center/cover;
  color: white;
  padding: 60px 0;
  text-align: center;
}
.cta-button {
  background: #ff4081;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 0;
}
.feature {
  flex: 0 0 30%;
  margin-bottom: 20px;
}
.cta {
  text-align: center;
  padding: 30px 0;
  background: #f0f0f0;
}
.footer {
  background: #222;
  color: white;
  padding: 20px 0;
  text-align: center;
}
.footer a {
  color: #ff4081;
  text-decoration: none;
}
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  .feature {
    flex: 0 0 80%;
  }
}
