@media (min-width: 1px) {
    /* Footer container */
    .footer-container {
        position: relative;
        width: 100%;
        height: calc(170vw);
    }

    /* 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: 0;
        right: 0;
        height: 100%;
        z-index: 2;
        padding: calc(8vw) calc(5.33vw);
        color: rgb(255, 255, 255);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* Main content - logo and links */
    .footer-main-content {
        display: flex;
        flex-direction: column;
        gap: calc(6vw);
    }

    /* Logo box */
    .footer-logo-box {
        background-color: rgb(255, 255, 255);
        padding: calc(4vw);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-logo-box img {
        max-width: 100%;
        height: auto;
    }

    /* Links section */
    .footer-links-section {
        display: flex;
    }

    .footer-links-column {
        display: flex;
        flex-direction: column;
        gap: calc(2vw);
    }

    .footer-link {
        font-size: calc(3.5vw);
        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: none;
    }

    /* Bottom bar */
    .footer-bottom {
        padding-top: calc(4vw);
        display: flex;
        flex-direction: column;
        font-size: calc(2.5vw);
    }

    .footer-copyright {
        color: rgb(255, 255, 255);
    }

    .footer-bottom-links {
        display: flex;
        flex-wrap: wrap;
        gap: calc(3vw);
    }

    .footer-bottom-links a {
        color: rgb(255, 255, 255);
        text-decoration: none;
    }

    .footer-bottom-links a:hover {
        text-decoration: underline !important;
        cursor: pointer;
    }
}
