/* =========================
   LEGAL DOCUMENT STYLE
   Polityka prywatności / RODO
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #f8fafc;
    color: #111827;
    line-height: 1.7;
}

/* GŁÓWNY BLOK */

.section {
    max-width: 900px;
    margin: 60px auto;
    background: #ffffff;
    padding: 60px 70px;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

/* NAGŁÓWKI */

.section h1 {
    font-size: 2.2em;
    margin-bottom: 35px;
    color: #0f172a;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 15px;
}

.section h2 {
    font-size: 1.35em;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1e293b;
}

/* TEKST */

.section p {
    margin-bottom: 15px;
    font-size: 1.02em;
}

/* LISTY */

.section ul {
    margin: 15px 0 20px 25px;
}

.section li {
    margin-bottom: 8px;
}

/* LINKI */

.section a {
    color: #2563eb;
    text-decoration: none;
}

.section a:hover {
    text-decoration: underline;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 768px) {

    .section {
        margin: 30px 15px;
        padding: 35px 25px;
    }

    .section h1 {
        font-size: 1.7em;
    }

    .section h2 {
        font-size: 1.2em;
    }
}
