/* Ogólny wygląd strony polityki */
body {
    font-family: "Manrope", sans-serif;
    background: #f9fafb;
    color: #333;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* Hero */
.hero {
    text-align: center;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(135deg, #3a6ff8, #5ab2f7);
    color: #fff;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.hero-description {
    font-size: 1rem;
    opacity: 0.9;
}

/* Główna treść */
.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Sekcje */
.container > div {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Nagłówki */
h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: #3a6ff8;
    position: relative;
}
h2::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60%;
    background: #3a6ff8;
    border-radius: 4px;
}

/* Spis treści */
ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
ol li {
    margin-bottom: .5rem;
}

/* Listy w sekcjach */
ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}
ul li {
    margin-bottom: .4rem;
}

/* Linki */
a {
    color: #3a6ff8;
    text-decoration: none;
    transition: 0.2s;
}
a:hover {
    text-decoration: underline;
}

/* Stopka */
.footer {
    background: #111827;
    color: #e5e7eb;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 3rem;
}
.footer-title {
    font-weight: 700;
    margin-bottom: .3rem;
}
.footer-text {
    opacity: 0.8;
    font-size: 0.95rem;
}
.footer-bottom {
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}
