/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #eaf6f9;
    color: #045d75;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main content should expand to push footer down */
main {
    flex-grow: 1;  /* Pushes footer to the bottom */
    padding: 80px 20px 20px; /* Adjust to prevent overlap with fixed header */
}