* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #0065BD;
		color: #FFFFFF;
    border: 5px solid #FFFFFF;
}

.banner {
    width: 100%;
    position: relative;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

header {
    text-align: center;
    background: #004F96;
    padding: 2rem 0;
    width: 100%;
    border-bottom: 0px solid #ddd;
}


header.sticky {
    position: sticky;
    top: 0;
}

header h1 {
    margin: 0;
    font-size: 1.5rem;
    color: #FFFFFF;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 602px;
}


nav {
    background: #004F96;
    color: #FFFFFF;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0.6rem;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    background-color: #ddd;
    color: #004F96;
    border: 0px solid #ddd;
    }

main ul {
    margin-left: 30px;
}

main ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
}

p a {
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: bold;
    }
		

a:hover {
    background-color: #ddd;
    color: #004F96;
    border: 0px solid #ddd;
    }

p {
    text-align: block;
		margin-bottom: 20px
}

h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #FFFFFF;
}

main {
    padding: 3rem 2rem 2rem; /* Adjusted to account for fixed nav and header */
}

section {
    text-align: block;
		margin-left: 5%;
    width: 90%;
    margin-bottom: 2rem;
}

footer {
    background: #004F96;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    main {
        padding: 2rem 1rem 2rem; /* Adjusted to account for fixed nav on smaller screens */
    }
}
