body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  max-width: 750px;
  margin: 0 auto;
  padding: 2em;
  line-height: 1.7;
  background-color: #f9f9f9;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3em;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1.5em;
}

header .logo {
  max-width: 180px;
  height: auto;
}

nav a {
  margin-left: 1.5em;
  text-decoration: none;
  color: #005b96;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover, nav a.active {
  color: #003f6b;
  border-bottom: 2px solid #003f6b;
  padding-bottom: 0.2em;
}

h1 {
  font-size: 2.8em;
  margin-bottom: 0.2em;
  color: #111;
}

h2 {
  font-size: 1.8em;
  margin-top: 2.5em;
  margin-bottom: 0.8em;
  color: #005b96;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.3em;
}

p {
    margin-bottom: 1.2em;
}

ul {
  padding-left: 1.5em;
  margin-top: 0;
  list-style-type: '✓ ';
}

ul li {
  margin-bottom: 0.6em;
  padding-left: 0.5em;
}

.cta {
  display: inline-block;
  margin-top: 1em;
  padding: 0.8em 1.6em;
  background-color: #005b96;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(0, 91, 150, 0.2);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta:hover {
  background-color: #003f6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 91, 150, 0.3);
}

a {
    color: #005b96;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
  margin-top: 5em;
  font-size: 0.9em;
  color: #777;
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5em;
  text-align: center;
}

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

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 1em;
  }

  nav a {
    margin-left: 0;
    margin-right: 1em;
  }

  h1 {
    font-size: 2.2em;
  }

  h2 {
    font-size: 1.5em;
  }
}
