/* style.css */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
  color: #333;
}

header {
  background: #eee;
  padding: 2em;
  text-align: center;
}

section {
  padding: 2em;
  max-width: 600px;
  margin: auto;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 0.5em;
}

.cta {
  text-align: center;
  margin-top: 2em;
}

.button {
  display: inline-block;
  padding: 0.8em 1.5em;
  background: #0077cc;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 1em;
}

.link {
  text-decoration: underline;
  color: #0077cc;
}

footer {
  text-align: center;
  padding: 1em;
  background: #eee;
  margin-top: 2em;
}

