/* footer.css */
.site-footer {
    background-color: #100e0e;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #bcb9b0;
    border-top: 1px solid #e7e7e7;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    white-space: nowrap;
    margin: 5px 0;
}

.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 5px 0;
}

.footer-links a {
    color: #007089;
    text-decoration: none;
    margin: 0 5px;
    white-space: nowrap;
}

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

.separator {
    margin: 0 5px;
    color: #007089;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright, .footer-links {
        margin: 10px 0;
    }    
}