/* Reset podstawowy dla polityki prywatności */
.pp-body, .pp-body h1, .pp-body h2, .pp-body h3, .pp-body p, .pp-body ul {
    margin: 0;
    padding: 0;
}

/* Ogólny wygląd strony */
.pp-body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.7;
    background-color: #fff;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Nagłówek główny */
.pp-body h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: black; /* zielony akcent */
}

/* Podtytuły */
.pp-body h2, .pp-body h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #000000; /* pasuje do Twoich buttonów */
    font-size: 1.3rem;
}

/* Akapity */
.pp-body p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Listy */
.pp-body ul {
    margin: 10px 0 20px 20px;
    list-style-type: disc;
}

/* Linki */
.pp-body a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}
.pp-body a:hover {
    text-decoration: underline;
}

/* Pudełko z treścią */
.pp-container {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    animation: pp-fadeIn 0.6s ease-in-out;
}

/* Animacja */
@keyframes pp-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Stopka */
.pp-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
}
.pp-footer a {
    color: #000000;
}