.legal-strip {
    position: relative; /* FIX REMOVED */
    width: 100%;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.legal-strip .left {
    font-size: 14px;
}

.legal-strip .right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.legal-strip .right a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.legal-strip .right a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-strip {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    
    .legal-strip .right {
        justify-content: center;
    }
}
