body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
}

header {
  background: #333;
  padding: 12px 0;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
}

main {
  padding: 30px;
  max-width: 800px;
  margin: auto;
  background: white;
  border-radius: 5px;
  box-shadow: 0 2px 8px #ddd;
}

h1 {
  color: #004080;
}

footer {
  background: #333;
  color: #fff;
  padding: 14px 0;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 40px;
  font-size: 0.98em;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #eef0f6;
}

header {
  background: #003366;
  padding: 14px 0;
  box-shadow: 0 2px 8px #c6dafc;
}

nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.08em;
  padding: 7px 14px;
  border-radius: 6px;
  transition: background 0.22s;
}

nav a:hover {
  background: #0056b3;
}

main {
  padding: 40px 10px 30px 10px;
  max-width: 950px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px #d5e5ff;
  position: relative;
  z-index: 1;
}

footer {
  background: #003366;
  color: #fff;
  padding: 18px 0 8px 0;
  text-align: center;
  margin-top: 50px;
  font-size: 1em;
  position: relative;
}

.footer-image {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.footer-image img {
  width: 100vw;
  height: 15vw;
  border-radius: 0;
  margin-bottom: 10px;
}


/* Animations */
@keyframes floatImg {
  from { transform: translateY(0); }
  to { transform: translateY(-18px); }
}
