 body {
    background-color: #FFFFFF;
    color: #222222;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

header {
    border-bottom: 2px solid #D1E4FF;
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 20px;
}

/* Nav styling */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav ul li  {
  text-decoration: none;
  color: #3A6EA5; /* your blue from Snippet 1 */
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

nav ul li:hover,
nav ul li:focus {
  background-color: #D1E4FF;
  color: #1FB6FF;
}

h1 {
    color: #3A6EA5;
    margin-top: 0;
    text-align: center;
}

h2, h3 {
    color: #1FB6FF;
    font-weight: normal;
    margin-top: 5px;
    margin-bottom: 20px;
    text-align: center;
}

p {
    color: #555555;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
}

/* Our Quote */
.quote {
  font-weight: bold;
  color: #1FB6FF; /* your blue highlight color */
  font-size: 1.2em;
  margin-top: 20px;
  padding-left: 12px;
  font-style: italic;
}