
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #222;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

header {
  background-color: #0a4d3c;
  padding: 20px;
  text-align: center;
}

header img {
  max-width: 180px;
  height: auto;
  animation: fadeIn 1s ease-in-out;
}

nav {
  background-color: #064a38;
  padding: 12px 0;
  text-align: center;
}

.nav-container a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-container a:hover {
  text-decoration: underline;
  color: #f0f0f0;
}

section {
  background-color: white;
  padding: 30px;
  max-width: 900px;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  animation: fadeIn 0.8s ease-in-out;
}

h1 {
  text-align: center;
  color: #0a4d3c;
}

footer {
  background-color: #0a4d3c;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 0.9em;
  animation: fadeIn 1.2s ease-in-out;
}

table {
  width: 80%;
  margin: 20px auto;
  border-collapse: collapse;
  animation: fadeIn 1s ease-in-out;
}

th, td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .nav-container a {
    display: block;
    margin: 10px 0;
  }

  section {
    margin: 15px;
    padding: 20px;
  }

  table {
    width: 100%;
  }
}
