.winit-footer {
    padding: 25px 0 30px;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 60px;
    /* Added spacing as requested */
}

.winit-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

/* Top: Links */
.winit-footer-top {
    margin-bottom: 20px;
    padding: 0 15px;
    /* Indent content relative to separator */
}

.winit-footer-links {
    display: flex;
    gap: 30px;
    font-weight: 500;
}

.winit-footer-links a {
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.winit-footer-links a:hover {
    opacity: 1;
}

/* Separator */
.winit-footer-separator {
    width: 100%;
    height: 1px;
    opacity: 0.2;
    /* Subtle line */
    margin-bottom: 30px;
}

/* Bottom Container */
.winit-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 15px;
    /* Indent content relative to separator */
    /* Align Top */
}

/* Left Side: Content */
.winit-footer-left {
    flex: 1;
    padding-right: 40px;
}

/* Copyright Warning */
.winit-footer-copyright-warning {
    margin-bottom: 25px;
    opacity: 0.8;
    /* Reduce line spacing for description as requested */
    line-height: 1.3;
}

/* Company Info */
.winit-footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 20px;
    font-size: 13px;
    opacity: 0.9;
}

.info-item {
    display: inline-block;
}

.info-label {
    margin-right: 5px;
    font-weight: 700;
}

.winit-footer-break {
    flex-basis: 100%;
    height: 0;
}

/* Right Side (Logo) */
.winit-footer-right {
    width: auto;
    display: flex;
    justify-content: flex-end;
    /* User requested logo aligned with description area */
    align-items: flex-start;
    padding-top: 0;
    /* Slight adjustment if needed to match text baseline */
}

.footer-logo {
    height: 35px;
    /* Fixed height as requested */
    width: auto;
    /* Width adjusts automatically */
    max-width: none;
}

.footer-logo.footer-logo-white-filter {
    filter: brightness(0) invert(1);
}

.winit-footer-break {
    flex-basis: 100%;
    height: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .winit-footer-container {
        padding: 0 15px;
        /* Separator margin */
        flex-direction: row;
        /* Allow mixing links and separator */
        flex-wrap: wrap;
        align-content: flex-start;
    }

    .winit-footer-top {
        display: contents;
        /* Unwrap to mix links with separator */
    }

    .winit-footer-top,
    .winit-footer-bottom {
        padding: 0;
        /* Remove inner padding to align with separator */
    }

    .winit-footer-links {
        display: contents;
        /* Unwrap links */
    }

    .winit-footer-links a {
        display: block;
        width: 33.3333%;
        /* 3 items per row */
        text-align: center;
        /* Center content within the cell */
        box-sizing: border-box;
        margin-bottom: 10px;
        /* Reduced space between rows */
        order: 1;
        /* First group above separator */
    }

    /* Links after the 3rd one go below separator */
    .winit-footer-links a:nth-child(n+4) {
        order: 3;
        margin-bottom: 30px;
        /* Increased spacing before logo (15px + 15px) */
    }

    .winit-footer-separator {
        order: 2;
        /* Separator in between */
        width: 100%;
        margin-top: 0;
        margin-bottom: 10px;
        /* Reduced space below separator */
    }

    .winit-footer-bottom {
        order: 4;
        /* Content at bottom */
        width: 100%;
        display: flex;
        /* Ensure it's a flex container */
        flex-direction: column-reverse;
        /* Stack Content below, Logo above (visual order) */
        gap: 30px;
    }

    .winit-footer-right {
        width: 100%;
        justify-content: flex-start;
        padding-top: 0;
    }

    .winit-footer-left {
        padding-right: 0;
    }

    .winit-footer-info {
        flex-direction: row;
        gap: 5px 0;
    }

    .info-item {
        /* Default fallback */
        width: 50%;
        padding-right: 5px;
        box-sizing: border-box;
    }

    /* Left Column Items: Narrower (50% - 20px) */
    .info-item-footer_company_name,
    .info-item-footer_ceo_lawyer,
    .info-item-footer_reserve,
    .info-item-footer_fax {
        width: calc(50% - 20px);
    }

    /* Right Column Items: Wider (50% + 20px) */
    .info-item-footer_biz_reg,
    .info-item-footer_ad_lawyer,
    .info-item-footer_rep_number,
    .info-item-footer_email {
        width: calc(50% + 20px);
    }

    .info-item-footer_address {
        width: 100%;
        order: 100;
        padding-right: 0;
        margin-top: 0px;
    }

    .winit-footer-break {
        display: none;
    }


}