/* ═══════════════════════════════════════════════════════════════
   privacybeleid.css — Privacy & Cookie policy page
   ═══════════════════════════════════════════════════════════════ */

.policy-page {
    padding: 80px 20px 100px;
}

.policy-container {
    max-width: 760px;
    margin: 0 auto;
}

.policy-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.policy-subtitle {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.policy-section {
    margin-bottom: 16px;
}

.policy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.policy-section p {
    color: rgba(240, 244, 250, 0.82);
    line-height: 1.75;
    margin-bottom: 10px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.policy-section ul li {
    color: rgba(240, 244, 250, 0.82);
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.policy-section ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--orange);
}

.policy-section a {
    color: var(--blue-light);
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

.policy-contact-block {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 12px;
}

.policy-note {
    background: rgba(16, 199, 122, 0.07);
    border-left: 3px solid var(--orange);
    border-radius: 0 6px 6px 0;
    padding: 10px 16px;
    font-size: 0.88rem;
    color: var(--orange-light);
    margin-top: 10px;
}

.policy-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0 24px;
}

.policy-back {
    margin-top: 32px;
}
