/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Outer Container */
.outer-container {
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, #114164, #809cc1); /* Prussian blue to light blue */
    width: 100%;
    min-height: 100vh;
}

/* Inner Container - Centered 90% width */
.inner-container {
    max-width: 1280px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
	position: relative; /* Positioning context for the overlay */
    width: 100%;
	font-family: Georgia, "Times New Roman", Times, serif;
}

.header-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Overlay */
.header-overlay {
    position: absolute; /* Position overlay over the header image */
    top: 3%; /* Center vertically */
    left: 2%; /* Center horizontally */
    color: white; /* Text color */
    font-size: 1em; /* Large text size */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optional: add shadow for better readability */
    text-align: center; /* Center text alignment */
}

/* Navigation */
.nav {
    background: linear-gradient(to bottom, #337899, #1b80ac); /* Atlantic blue gradient */
    padding: 10px 20px;
}

.nav ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    margin: 0;
}

.nav li {
    margin-right: 20px;
}

.nav a {
    color: #f0f0f0; /* Off-white */
    text-decoration: none;
    padding: 12px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ffffff; /* Bright white on hover */
    background-color: #31667e; /* Blue background on hover for contrast */
}


h1 {
	color: #666;
	font-size: 1.7em;
	line-height:1.5em;
}

h2 {
	font-size: 1.4em;
}


h3 {
	font-size: 1.3em;
}

/* Main Content */
.main-content {
    padding: 15px;
    background-color: #fff;
    margin: 5px auto;
    width: calc(100% - 120px); /* Adds padding space on sides */
    color: #333;
    flex: 1;
}

.white-text {
    color: white;
}

.indented-list {
    padding-left: 20px; /* Adjust as needed */
    list-style: disc outside none; /* Moves the bullet outside */
}

/* Optional additional margin on list items */
.indented-list li {
    margin-left: 20px; /* Adjust as needed */
	padding-left: 10px; /* Adjust to match padding-left on the <ul> */
	text-indent: 0; 
}


/* Footer */
.footer {
    width: 100%;
    background-color: #fff;
    text-align: center;
    margin-top: auto;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1280px; /* Constrain to inner container width */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.footer-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Styling for medium screens (tablets, small laptops) */
@media (max-width: 1024px) {
    .header-image {
        height: 140px; /* Increase the height for smaller screens */
    }	

    .header-overlay {
        font-size: 1.5em;
        top: 8%;
        left: 5%;
    }
}

/* Styling for small screens (large phones) */
@media (max-width: 768px) {
    .header-image {
        height: 110px; /* Increase the height for smaller screens */
    }	

    .header-overlay {
        font-size: 1.2em;
        top: 6%;
        left: 8%;
    }
}

/* Styling for extra small screens (small phones) */
@media (max-width: 480px) {
    .header-image {
        height: 70px; /* Increase the height for smaller screens */
    }		
    .header-overlay {
        font-size: .6em;
        top: 5%;
        left: 10%;
    }
}