* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}
.header-container {
    text-align: center;
    background-color: #0064ad;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.header-text {
    color: #f2f2f2;
    font-size: 150%;
    padding: 20px;
    width: 100%;
    text-align: center;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #567a9d;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    overflow: hidden;
}
.navbar a {
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: min(17px, 21px);
    font-weight: 600;
}
.navbar a.right {
    float: right;
}
.navbar a:hover {
    background-color: #fcd34d;
    color: #45627e;
}
body {
    line-height: 1.6;
    color: #333;
}
.main-container {
    width: 90%;
    max-width: 900px;
    margin: 2em auto;
}
.main-container a {
    color: blue;
    text-decoration: none;
}
.main-container a:visited {
    color: blue; /* Prevent it from turning purple */
    text-decoration: none;
}
.main-container a:active,
.main-container a:focus,
.main-container a:hover {
    text-decoration: none;
}
.no-break-link {
    white-space: nowrap;
}
main section {
    margin-bottom: 2em;
}
main h2 {
    margin-bottom: 0.5em;
    color: #0064ad;
}
ul {
    list-style-position: inside;
    padding-left: 0;
    margin-left: 0;
}
footer {
    padding: 0;
    background-color: #567a9d;
    color: #ffffff;
}
footer .footer-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2em 1em;
}
footer .split-1,
footer .split-2 {
    display: flex;
    flex-direction: column;
    padding: 10px 40px;
}
footer .split-1 a,
footer .split-1 p,
footer .split-2 h3 {
    padding-bottom: 5px;
}
footer .split-1 img {
    max-width: 175px;
    height: auto;
}
footer a {
    color: #ffffff;
    text-decoration: none;
}
footer a:hover {
    color: #fcd34d;
}
footer > p {
    text-align: center;
    padding-top: 0.5rem;
    font-size: 0.9rem;
    background-color: #45627e;
    margin: 0;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
    background-color: #45627e;
    font-size: 0.9rem;
    margin: 0;
}
.footer-links a {
    color: #ffffff;
    text-decoration: none;
}
.footer-links a:hover {
    color: #fcd34d;
}
.map-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
    max-width: 450px;
}

@media screen and (max-width: 1080px) {
    .header-container {
        height: 200px;
    }
}
@media screen and (max-width: 400px) {
    .header-container  {
        font-size: 75%;
    }
    .navbar {
        justify-content: center;
    }
    footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    footer .split-1,
    footer .split-2 {
        align-items: center;
    }
    footer .split-1,
    footer .split-2 h3 {
        margin-top: 0;
        margin-bottom: 0;
    }
    footer .split-1 p {
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    footer .split-1 img {
        max-width: 60vw;
    }
    .map-embed {
        aspect-ratio: auto;
        height: 250px;
    }
}
