body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #000;
}
.logo {
  height: 40px;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.hero {
  text-align: center;
  padding: 100px 20px;
  background-color: #000;
  color: white;
}
.btn {
  background-color: #F40F85;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  margin-top: 15px;
}
.services, .how-it-works, .contact, .about {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 30px;
}
.service-card {
  background-color: #FDE6F2;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
}
footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}
a {
  color: #F40F85;
}
