@media (min-width: 768px) {
    /* Footer container */
    .footer-container {
        position: relative;
        width: 100%;
        height: calc(41.177vw);
    }

    /* Background row */
    .footer-background-row {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        margin: 0;
    }

    /* Content row - absolutely positioned on top */
    .footer-content-row {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1280px;
        height: 100%;
        z-index: 2;
        padding: calc(10vw) calc(9vw) calc(5vw);
        color: rgb(255, 255, 255);
    }

    /* Main content - logo and links */
    .footer-main-content {
        display: flex;
        flex-direction: row;
        gap: calc(9vw);
        align-items: center;
    }

    /* Logo box */
    .footer-logo-box {
        padding: calc(1vw) 0;
        background-color: rgb(255, 255, 255);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: calc(29.5vw);
        height:100%;
    }

        .footer-logo-box img {
            transform: scale(1.2);
        }

    /* Links section */
    .footer-links-section {
        flex-direction: row;
        gap: calc(1vw);
        flex: 1;
        position: relative;
        align-items: stretch;
    }

    .footer-links-column {
        display: flex;
        flex-direction: column;
        gap: calc(1.2vw);
        flex: 1;
    }

    .footer-link {
        font-size: calc(1.2vw);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer-link a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        font-weight: 500;
    }

    .footer-link a:hover {
        text-decoration: underline;
    }

    /* Divider */
    .footer-divider {
        display: block;
        width: 2px;
        background-color: rgb(255, 255, 255);
        opacity: 1;
        flex-shrink: 0;
    }

    /* Bottom bar */
    .footer-bottom {
        padding-top: calc(2vw);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: calc(0.9vw);
    }

    .footer-copyright {
        color: rgb(255, 255, 255);
    }

    .footer-bottom-links {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0;
    }

    .footer-bottom-links a {
        color: rgb(255, 255, 255);
        text-decoration: none;
        white-space: nowrap;
    }

    .footer-bottom-links a:not(:first-child)::before {
        content: "|";
        margin: 0 calc(0.5vw);
        color: rgb(255, 255, 255);
    }

    .footer-bottom-links a:hover {
        text-decoration: underline;
    }
}
