.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
    background-color: #F2EFEA;
    color: #233619;
    font-size: 14px;
}

/* Optional: small tweak for very small screens */
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}