body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5; /* Grey background across the entire page */
    color: #333;
    line-height: 1.5;
    padding-top: 50px; /* Ensure content doesn't hide behind the fixed button */
}

#language-select {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 12px 24px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
    transition: background-color 0.3s ease;
}

button:hover, button:focus {
    background-color: #0056b3;
}

.privacy-policy {
    display: none;
    padding: 20px;
    margin: 0 auto; /* Adjusted to remove any distinct background separation */
    max-width: 800px;
    background:white;
}

h1, p {
    padding: 0 10px;
}

h1 {
    font-size: 22px;
}

p {
    font-size: 16px;
}

@media (max-width: 768px) {
    button {
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 18px;
    }

    p {
        font-size: 13px;
    }
}