.global-footer {
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #eef0f3;
    padding: 32px 0;
    margin-top: auto;
    box-sizing: border-box;
}

.global-footer * {
    box-sizing: border-box;
}

.global-footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 16px;
}

.global-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.global-footer-company-img,
.global-footer-system-img {
    height: 24px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.global-footer-company-img:hover,
.global-footer-system-img:hover {
    opacity: 1;
}

.global-footer-logo-divider {
    height: 20px;
    width: 1px;
    background-color: #cbd5e1;
}

.global-footer-copy {
    color: #a0aec0;
    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.2px;
}