* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background-color: #003366;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5em;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background-color: #f2f2f2;
  padding: 80px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2em;
  color: #003366;
}

.tagline {
  font-size: 1.2em;
  color: #003366;
  margin-top: 10px;
  font-weight: 500;
}

.content-section {
  padding: 40px 20px;
}

.content-section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #003366;
}

.content-section ul {
  padding-left: 20px;
}

.content-section ul li {
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 10px;
}

form input, form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  margin-top: 15px;
  padding: 10px;
  background-color: #003366;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #0055aa;
}

footer {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
