/* General Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding-top: 100px;
}

section {
  margin-bottom: 40px;
}

h1, h2 {
  color: #333;
}

p, ul {
  color: #555;
}

ul {
  list-style: disc;
  margin-left: 20px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
  main {
    padding: 15px;
    max-width: 100%;
    padding-top: 80px; /* Reduced padding for small screens */
  }

  h1, h2 {
    font-size: 1.8rem;
    text-align: center; /* Center headings on small screens */
  }

  p, ul {
    font-size: 1rem;
    line-height: 1.4; /* Slightly reduced line height for readability */
  }

  ul {
    margin-left: 10px; /* Adjust margin for smaller screens */
  }

  img {
    width: 100%; /* Ensure images are responsive */
    height: auto;
  }

  /* Adjust padding for sections */
  section {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  h1, h2 {
    font-size: 1.5rem;
  }

  p, ul {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  section {
    margin-bottom: 20px;
  }

  main {
    padding: 10px;
  }
}
