/* Shared styles for both HTML files */

/* Body styling */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f0f8ff;
  color: #333;
}

/* Headings */
h1 {
  color: #2a52be;
}

h2 {
  color: #4169e1;
  margin-top: 40px;
}

/* Navigation list styles */
nav ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

nav ul li {
  margin: 8px 0;
}

/* Link styles */
a {
  color: #0066cc;
  text-decoration: none;
}

/* Hover effect */
a:hover {
  text-decoration: underline;
}

/* Visited link style */
a:visited {
  color: #551a8b;
}

/* Footer styling */
footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #555;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}
