.footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem 2rem;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333333;
    margin-top: 2rem;
}

    .footer p {
        margin: 0;
        font-size: 0.9rem;
        color: #555555;
    }

    .footer nav {
        margin-top: 0.5rem;
    }

    .footer a {
        color: #f28c38; /* Orange based on logo color */
        text-decoration: none;
        font-size: 0.9rem;
        margin: 0 1rem;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: #e07b30; /* Slightly darker orange for hover effect */
            text-decoration: underline;
        }

        .footer a:focus {
            outline: 2px solid #f28c38;
            outline-offset: 2px;
        }
