/* Footer Styles */
.footer {
    background-color: #333; /* Gray background */
    color: #f2f2f2;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    width: 100%;
    position: relative;
    bottom: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer p {
    margin: 5px 0;
}

.footer-links {
    display: inline-block; /* Ensure links are displayed in one row */
    white-space: nowrap;   /* Prevent line breaks */
}

.footer-links a {
    color: #f2f2f2;
    text-decoration: none;
    margin: 0 10px;
}

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

.footer-links span {
    margin: 0 10px;
    color: #ccc;
}

/* Responsive Design */
@media screen and (max-width: 800px) {
    .footer {
        font-size: 12px;
        padding: 15px;
    }

    .footer-links {
        display: inline-block; /* Keep the links in one row */
        white-space: nowrap;   /* Ensure no line breaks occur */
        margin-top: 10px;
    }

    .footer-links a {
        margin: 0 5px; /* Reduce spacing between links for small screens */
    }

    .footer-links span {
        margin: 0 5px;
    }
}
