#privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 350px;
    background-color: #f9f9f9;
    color: #333;
    padding: 22px 52px 15px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    z-index: 1000;
}

#privacy-popup p {
    margin: 0 0 10px;
}

#privacy-popup button {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #333;
    font: 400 30px/1 Arial, sans-serif;
    cursor: pointer;
}

#privacy-popup button:hover,
#privacy-popup button:focus-visible {
    background-color: #e9e9e9;
    outline: none;
}

.company-registration {
    margin: 18px 0 0;
    text-align: center;
    color: inherit;
}

@media (min-width: 768px) {
    #privacy-popup {
        max-width: 400px;
    }
}
