/* Global styles */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  background: #eef2f5;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #005a9c;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
}
.logo-box {
  background-color: #fff;
  padding: 10px;
  display: inline-block;
  border-radius: 6px;
}

.linked-heading {
  text-decoration: none;
  color: inherit;
}

.linked-heading:hover {
  text-decoration: underline;
  color: #007acc;
}







.logo {
   
  max-height: 100px;
  margin-bottom: 20px;
}

/* Nav bar */
/* Modern nav buttons */
nav {
  margin-top: 20px;
  text-align: center;
}

nav a {
  display: inline-block;
  margin: 5px 10px;
  padding: 10px 20px;
  background-color: #007acc;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav a:hover {
  background-color: #005fa3;
  transform: scale(1.05);
}

nav a.active {
  background-color: #003f72;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.active {
  background-color: #003f72;
}

/* Main content */
main {
  padding: 30px 20px;
  max-width: 1000px;
  margin: 30px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/* Section headings */
main h1, main h2 {
  color: #005a9c;
  margin-bottom: 10px;
}

/* Lists */
main ul {
  margin-bottom: 1em;
  padding-left: 20px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #dce3ea;
  font-size: 0.9em;
  border-top: 1px solid #ccc;
  margin-top: 40px;
}
