/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header Styles */
header {
  background: linear-gradient(to right, #004aad, #007bff);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

header h1 a {
  color: white;
  text-decoration: none;
}

/* Main Content */
main {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Sections */
section {
  margin-bottom: 30px;
}

section h2 {
  color: #004aad;
  margin-bottom: 10px;
}

ul {
  list-style: disc;
  margin-left: 20px;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  margin-top: 20px;
  background: #004aad;
  color: white;
  font-size: 14px;
}

footer a {
  color: white;
}
