
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #e6f4e6;
  color: #333;
  text-align: center;
}

header, footer {
  background: #FFF;
  color: #333;
  padding: 1em;
  text-align: center;
}

nav {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1000;
  padding: 1em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  margin: 0 1em;
  color: #006400;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
  color: #228B22;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2em;
  box-sizing: border-box;
}


.home {
  text-align: center;
}

.home-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}


section {
  padding: 2em 0;
}

section.left-align {
  text-align: left;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table, th, td {
  border: 1px solid #ccc;
}

th, td {
  padding: 0.5em;
  text-align: left;
  background-color: #fff;
}

th {
  background-color: #cce5cc;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  main {
    padding: 1em;
  }
}

.table-wrap {
  overflow-x: auto;
  width: 100%;
}

.table-wrap table {
  min-width: 600px;
}


.hero {
  height: 70vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

