body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.privacy-policy {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 800px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.privacy-policy h2 {
    margin-bottom: 20px;
    font-size: 26px;
    color: #222;
    text-align: center;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 10px;
}

.privacy-policy h3 {
    margin-top: 20px;
    margin-bottom: -10px;
    font-size: 20px;
    color: #333;
}

.language-switcher {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.language-switcher button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.language-switcher button:hover {
    background-color: #0056b3;
}

.privacy-policy a {
    color: #007BFF;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    body {
        padding: 0;
        margin: 0;
    }

    .privacy-policy {
        border-radius: 0;
        box-shadow: none;
        padding: 20px;
        max-width: 100%;
        height: 100vh;
        box-sizing: border-box;
    }

    .privacy-policy h2 {
        font-size: 22px;
        text-align: center;
    }

    .language-switcher {
        justify-content: center;
    }
}