/* Styles for header */
header {
  background-color: #4CAF50; /* Green */
  color: white;
}
container { 
  background: white; 
  padding: 30px; 
  border-radius: 8px; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1, h2 {
  font-size: 36px;
}
p {
  font-size: 24px;
}
/* Styles for main content */
main {
  max-width: 800px; /* Center the content on smaller screens */
  margin: auto;
}
section {
  padding: 30px;
}
ul {
  list-style-type: none;
  padding: 0;
}
li {
  font-size: 24px;
  line-height: 1.5;
}
/* Styles for footer */
footer {
  background-color: #4CAF50; /* Green */
  color: white;
  text-align: center;
  padding: 10px;
}