/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Work Sans", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
}

/* Page container */
.page {
  max-width: 42rem; /* readable line length */
  margin: 0 auto;
  padding: 1.5rem;
}

/* Header image */
.header {
  text-align: left;
  margin-bottom: 2rem;
}

.header img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Main content */
.content p {
  margin: 0 0 1.2rem 0;
}

/* Links */
a:link
{ text-decoration: none;
color: #004D81; }

a:active
{ text-decoration: none;
color: #004D81; }

a:visited
{ text-decoration: none;
color: #004D81; }

a:hover
{ text-decoration: underline }

a:hover {
  text-decoration-thickness: 2px;
}

/* Footer */
.footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.8rem;
}

/* Newsletter section */
.newsletter {
  margin: 3rem 0;
}

.newsletter-form {
  text-align: center;
}

.newsletter-form label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 400;
  font-size: 1rem;
}

.newsletter-form input[type="email"] {
  width: 100%;
  max-width: 24rem;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.newsletter-form input[type="submit"] {
  margin-top: 0.75rem;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.newsletter-form input[type="submit"]:hover {
  background: #004D81;
  color: #fff;
}

.newsletter-note {
  margin-top: 1rem;
  font-size: 0.8rem;
}

.newsletter-note a {
  text-decoration: none;
}

.divider {
  border: none;
  border-top: 1px solid #ddd;
  width: 100%;
  margin: 4rem auto 2.5rem;
}
