/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic Page Layout */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f9fc;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, p {
    text-align: center;
}

/* Header */
header {
    background-color: #003366;
    color: #fff;
    padding: 20px 0;
}

.header-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

/* Carousel */
.carousel {
    position: relative;
    width: 80%;
    margin: 0 auto;
    padding-top: 20px;
}

.carousel img {
    width: 100%;
    max-width: 600px; /* Set a max-width for the images */
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto; /* This centers the images */
}

/* Carousel Description */
.carousel-description {
    padding: 20px 0;
    background-color: #e6f0ff;
    margin-bottom: 20px;
}

.carousel-description h2 {
    font-size: 1.8em;
    color: #003366;
}

.carousel-description p {
    font-size: 1.2em;
    color: #333;
}

/* Main Content */
main {
    padding: 20px;
    background-color: #ffffff;
    margin-top: 20px;
    flex-grow: 1; /* Makes the main content area expand to fill the space */
}

footer {
    background-color: #003366;
    color: #fff;
    padding: 10px;
    width: 100%;
    position: relative;
    bottom: 0;
    text-align: center;
    margin-top: auto; /* Ensures the footer sticks to the bottom */
}

/* Force footer links to stay white in all states */
footer a:link,
footer a:visited,
footer a:hover,
footer a:active {
    color: #fff !important;
    text-decoration: none;
}


/* Centered Content */
.content {
    text-align: center;
    padding: 30px;
}


/* Contact Form Styles */
.contact-form {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8em;
    color: #003366;
}

.contact-form label {
    font-size: 1.2em;
    color: #333;
    margin-top: 10px;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form input[type="submit"] {
    background-color: #003366;
    color: white;
    font-size: 1.2em;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form input[type="submit"]:hover {
    background-color: #005099;
}


