/* Reset some default browser styles */
body, h1, h2, ul, p {
  margin: 0;
  padding: 0;
}

/* Add a background color and some padding to the page */
body {
  background-color: #f4f4f4;
  padding: 20px;
  font-family: Arial, sans-serif;
}

/* Style the header */
header {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1em 0;
}

/* Style the navigation menu */
nav ul {
  list-style-type: none;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

/* Style the hero section */
.hero {
  background-color: #ccc;
  color: #333;
  text-align: center;
  padding: 50px 0;
}

/* Style the features and how it works sections */
#features, #how-it-works {
  margin: 20px 0;
}

/* Style the footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1em 0;
  position: relative;
  bottom: 0;
  width: 100%;
}
