* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.privacidad-container {
    width: 100%;
    max-width: 700px;

    background: white;

    padding: 40px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}