body {
    padding-bottom: 40px; /* Space for fixed footer */
}

footer {
    background-color: transparent;
    padding: 0 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* High z-index to stay on top */
    box-sizing: border-box; /* Include padding in width calculation */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

.footer-container nav a {
    margin: 0;
    text-decoration: none;
    color: #333;
}

.footer-container nav a:hover {
    opacity: 0.5;
}

.copyright {
    text-align: right;
    color: #333;
}
