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

/* Set up for sticky footer */
html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Set up flex container for sticky footer */
    display: flex;
    flex-direction: column;
}

/* Banner styles */
.banner {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    background-color: #2c3e50; /* Dark blue-gray background */
    padding: 4rem 2rem; /* Add padding to create height */
    border-radius: 8px; /* Optional: rounded corners */
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: none; /* Hide the image for now */
}

.banner h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2.5rem;
    /* Remove absolute positioning since we don't have an image */
    position: static;
    transform: none;
}

/* Main content styles */
main {
    padding: 2rem 0;
    /* Allow main content to grow and push footer down */
    flex: 1 0 auto;
}

.intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.content {
    margin-bottom: 2rem;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #003366;
    text-decoration: underline;
}

/* Footer styles */
footer {
    /* Prevent footer from growing */
    flex-shrink: 0;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
    /* Ensure footer stays at bottom of viewport */
    width: 100%;
}