        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg: #f5f0ea;
            --surface: #ffffff;
            --text: #2c2420;
            --muted: #5c4e45;
            --accent: #8B4513;
            --accent-dark: #5c2d0c;
            --accent-light: #c97e3a;
            --border: #e2d5ca;
            --soft: #faf5ef;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            line-height: 1.65;
            color: var(--text);
            background: linear-gradient(135deg, var(--bg) 0%, #ede5db 100%);
            min-height: 100vh;
            padding: 40px 20px;
        }

        /* Main container - like a product card */
        .privacy-container {
            max-width: 1100px;
            margin: 0 auto;
            background: var(--surface);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
        }

        /* Header in PROCHERA style - referencing the hero */
        .privacy-header {
            background: linear-gradient(135deg, #2a1a12 0%, #5c361d 50%, #3b2418 100%);
            padding: 2.5rem 3rem;
            border-bottom: 4px solid var(--accent);
            position: relative;
        }

        .privacy-header::before {
            content: "⚙️";
            position: absolute;
            bottom: 20px;
            right: 30px;
            font-size: 80px;
            opacity: 0.08;
            pointer-events: none;
        }

        .privacy-header h1 {
            color: #fffdf9;
            font-size: 2.2rem;
            font-weight: 600;
            letter-spacing: -0.3px;
            margin-bottom: 0.5rem;
        }

        .privacy-header p {
            color: rgba(255, 250, 245, 0.85);
            font-size: 1rem;
            max-width: 700px;
        }

        /* Privacy content */
        .privacy-content {
            padding: 2.5rem 3rem;
        }

        /* Return navigation */
        .back-nav {
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .back-nav a {
            color: var(--accent);
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s;
        }

        .back-nav a:hover {
            color: var(--accent-dark);
            text-decoration: underline;
        }

        /* Section headings */
        h2 {
            color: var(--accent-dark);
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2rem 0 1rem;
            padding-left: 1rem;
            border-left: 4px solid var(--accent);
        }

        h2:first-of-type {
            margin-top: 0;
        }

        h3 {
            color: var(--text);
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.5rem 0 0.75rem;
        }

        p {
            color: var(--muted);
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        /* Lists */
        ul, ol {
            padding-left: 1.8rem;
            margin-bottom: 1.2rem;
        }

        li {
            color: var(--muted);
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        /* Highlight / box */
        .highlight-box {
            margin: 1.8rem 0;
            padding: 1.3rem 1.6rem;
            background: var(--soft);
            border: 1px solid #e8d9cc;
            border-left: 4px solid var(--accent);
            border-radius: 16px;
        }

        .highlight-box strong {
            color: var(--accent-dark);
        }

        /* Data table */
        .data-table {
            margin: 1.5rem 0;
            overflow-x: auto;
        }

        .data-table table {
            width: 100%;
            border-collapse: collapse;
            background: var(--soft);
            border-radius: 12px;
            overflow: hidden;
        }

        .data-table th,
        .data-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .data-table th {
            background: #e8ddd2;
            color: var(--accent-dark);
            font-weight: 600;
        }

        .data-table tr:last-child td {
            border-bottom: none;
        }

        /* Links */
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s;
        }

        a:hover {
            color: var(--accent-dark);
            text-decoration: underline;
        }

        .contact-link {
            font-weight: 500;
        }

        /* Footer */
        .privacy-footer {
            background: #f8f2ec;
            border-top: 1px solid var(--border);
            padding: 1.5rem;
            text-align: center;
            color: var(--muted);
            font-size: 0.85rem;
        }

        .privacy-footer a {
            color: var(--accent-dark);
        }

        /* Responsiveness */
        @media (max-width: 768px) {
            body {
                padding: 20px 12px;
            }

            .privacy-header {
                padding: 1.8rem 1.5rem;
            }

            .privacy-header h1 {
                font-size: 1.6rem;
            }

            .privacy-content {
                padding: 1.8rem;
            }

            h2 {
                font-size: 1.3rem;
            }
        }