body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f7fa;
  color: #333;
  text-align: center;
}

/* Hero Section */
.hero {
  background-color: #4a6cf7;
  color: white;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 38px;
}

.hero p {
  margin: 20px 0;
  font-size: 18px;
}

/* Button */
.button {
  background-color: white;
  color: #4a6cf7;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

/* Sections */
section {
  padding: 60px 20px;
}

h2 {
  margin-bottom: 20px;
}

/* Features */
.feature-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.feature {
  background: white;
  padding: 20px;
  width: 220px;
  border-radius: 8px;
}

/* CTA */
.cta {
  background-color: #e9ecff;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  padding: 30px;
}
