/* Footer CSS - Used across all pages */

footer {
    background-color: #000;
    color: #fff;
    padding: 37px 0 38px 0;
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-bottom: -20px;
    position: relative;
    display: flex;
    align-items: center;
}

footer .container {
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
    padding: 0 40px;
}

footer .footer-content {
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    font-size: 1rem;  /* This is the actual size from the main page */
}

footer .footer-content div {
    color: #fff;
    flex: 1;
}

footer .footer-content div:first-child {
    text-align: left;
}

footer .footer-content div:nth-child(2) {
    text-align: center;
}

footer .footer-content div:last-child {
    text-align: right;
}

footer .footer-content a {
    color: #fff;
    text-decoration: none;
}

footer .footer-content a:hover {
    text-decoration: underline;
}