    .site-footer {
        background-color: #94af31;
        color: #fff;
        padding: 50px 20px 20px;
    }

    .footer-container {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 2rem;
    }

    .footer-column {
        flex: 1 1 200px;
        min-width: 0;
    }

    .footer-brand h3,
    .footer-column h4 {
        margin-bottom: 1rem;
        font-size: 2rem;
        color: #f3f1e7;
    }

    .footer-column p,
    .footer-column li,
    .footer-column a {
        font-size: 1.5rem;
        line-height: 1.8;
        color: #f8f8f8;
        text-decoration: none;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column a:hover {
        color: #d9d2b0;
    }

    /* Social icons row */
    .footer-column .social-icons {
        display: flex;
        gap: 1.2rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer-column .social-icons a {
        font-size: 2rem;
        line-height: 1;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 30px;
        padding-top: 15px;
        text-align: center;
        font-size: 14px;
        color: #eee;
    }

    @media (max-width: 600px) {
        .footer-container {
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-column {
            flex: unset;
        }
    }
