/* Basic styles for the entire page */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  margin-top: 30px;
}

/* Styles for each section */
section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

section h2 {
  text-align: center;
}

section p {
  line-height: 1.5;
}

section img {
  max-width: 100%;
  display: block;
  margin: 20px auto;
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
  section {
    padding: 10px;
  }
}
