<style>
    * {
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: #f5f7fa;
      color: #333;
    }

    header img {
      width: 100%;
      height: auto;
      display: block;
    }

    nav {
      background-color: #003366;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    nav a {
      color: white;
      text-decoration: none;
      padding: 15px 20px;
      display: inline-block;
      transition: background 0.3s;
    }

    nav a:hover {
      background-color: #F7EE0B;
    }
a:link {
	text-decoration: none;
	color: #042D76;
	text-decoration: none !important;
}
a:visited {
	text-decoration: none;
	color: #0A48F0;
}
a:hover {
	text-decoration: none;
	color: #0B0FCC;
}
a:active {
	text-decoration: none;
	color: #554F4F;
}
    .container {
      padding: 30px;
      max-width: 100%;
      overflow-x: auto;
    }

    table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    table th, table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
}

    table th {
  background-color: #004080;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

    table tr:nth-child(even) {
      background-color: #f9f9f9;
    }

    table tr:hover {
      background-color: #e6f7ff;
    }

    table a {
      color: #0066cc;
      text-decoration: none;
    }

    table a:hover {
      text-decoration: underline;
    }

    footer {
      background-color: #003366;
      color: white;
      text-align: center;
      padding: 20px 10px;
      margin-top: 50px;
    }

    h1 {
      font-size: 2em;
      margin-bottom: 15px;
    }

    p {
      font-size: 1.1em;
      line-height: 1.6em;
      max-width: 800px;
      margin: 0 auto;
    }
  </style>