.policy-page {
    background: #f0f4f8;
}

/* ── Nagłówek strony ── */
.policy-page-header {
    background: linear-gradient(165deg, #0c1d2c 0%, #0f2234 100%);
    padding: calc(4rem + 62px) 2rem 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.policy-page-header h1 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    max-width: 700px;
    line-height: 1.3;
}

/* ── Treść ── */
.policy-page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 3.5rem 2rem 5rem;
    color: rgba(0,0,0,0.8);
}

/* Lead */
.policy-page-content h4 {
    font-size: 0.975rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(0,0,0,0.6);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Nagłówki sekcji */
.policy-page-content span {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-left: 12px;
    border-left: 3px solid var(--blue-color);
    line-height: 1.4;
}

/* Akapity */
.policy-page-content p {
    font-size: 0.925rem;
    line-height: 1.85;
    color: rgba(0,0,0,0.72);
    margin-bottom: 0.5rem;
}

/* Linki */
.policy-page-content a {
    color: var(--blue-color);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.policy-page-content a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* Listy */
.policy-page-content ul {
    margin: 0.5rem 0 0.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.policy-page-content ul li {
    font-size: 0.925rem;
    line-height: 1.75;
    color: rgba(0,0,0,0.72);
}

.policy-page-content ul a {
    color: var(--blue-color);
}

/* Bold wewnątrz treści */
.policy-page-content b {
    color: rgba(0,0,0,0.85);
    font-weight: 600;
}


/* ── Breakpointy ── */

@media (max-width: 660px) {
    .policy-page-header { padding: 3rem 1.5rem 2.5rem; }
    .policy-page-content { padding: 2.5rem 1.25rem 4rem; }
}
