/* Global Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding-top: 0px; 
}

/* Container */
.container {
  max-width: 881px;
  margin: auto;
  padding: 10px;
  background-color: white;
}
.container form {
  display: block;
}

.container input,
.container textarea,
.container button {
  display: block;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px;
  padding: 8px;
  box-sizing: border-box;
}

/* Header */
header {
  background-image: url('header.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 307px;
  color: white;
  text-align: center;
}


header h1, header h2, header h3 {
  color: white;
}

/* Navigation Bar */
nav {
  background-color: #004d99;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  background-color: #004d99;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-container a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 0px;
  padding-right: 20px;
  display: inline-block;
}


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

/* Headings */
h1, h2, h3 {
  color: #004d99;
  margin-top: 20px;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
}

td {
  padding: 4px;
  vertical-align: top;
}

td:first-child {
  width: 20%;
  font-weight: bold;
}

/* Notes or Disclaimers */
.note {
  font-style: italic;
  color: #555;
  margin-top: 10px;
}

/* Footer */
footer {
  background-color: #eaeaea;
  text-align: center;
  font-size: small;
  padding: 10px;
  margin-top: 40px;
}

button {
  background-color: #004d99;
  color: white;
  border: none;
  padding: 10px 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}
button:hover {
  background-color: #003366;
}

.card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 16px;
  margin-bottom: 20px;
}

.card table {
  margin-top: 10px;
  background-color: white;
  border: 1px solid #ccc;
}

.note {
  font-style: italic;
  color: #555;
  margin-top: 10px;
}
