/* General page setup */
body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 40px 20px;
  background-color: #f7f8fa;
  color: #333;
  line-height: 1.6;
}

/* Headings */
h1 {
  text-align: center;
  color: #222;
  margin-bottom: 0.25em;
}

h2 {
  text-align: center;
  font-weight: 500;
  color: #555;
  margin-bottom: 1.5em;
}

/* List styling */
ul {
  list-style-type: none;
  max-width: 650px;
  margin: 0 auto;
  padding: 0;
}

li {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 12px 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Link styling */
a {
  text-decoration: none;
  color: #0078d4;
  font-weight: 500;
}

a:hover {
  color: #005ea3;
  text-decoration: underline;
}

/* Footer if added later */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #666;
}
