/* Base Styles */
body {
  background-color: #f9f9f9;
  color: #333;
  font-family: 'Eagle Lake', serif;
  line-height: 1.6;
  padding: 20px;
  font-size: 1.1em;
}

main section {
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

main h2 {
  color: #2c3e50;
  font-size: 1.5em;
  margin-bottom: 10px;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 📱 Mobile Responsiveness */
@media (max-width: 768px) {
  body {
    padding: 15px;
    font-size: 1em;
  }

  main section {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  main h2 {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
    font-size: 0.95em;
  }

  main h2 {
    font-size: 1.2em;
  }
}
