        :root {
            --bg: #ffffff;
            --text-main: #1d1d1f;
            --text-muted: #6e6e73;
            --accent: #0066cc; 
            --border: #d2d2d7;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Inter', -apple-system, sans-serif; 
            background-color: var(--bg); 
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .container { max-width: 850px; margin: 0 auto; padding: 0 30px; }

  /* HEADER */
        header { padding: 25px 0; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f2f2f2; }
        .logo { font-weight: 700; font-size: 0.9rem; text-decoration: none; color: var(--text-main); letter-spacing: 0.02em; }
        
        .nav-right { display: flex; align-items: center; gap: 30px; }
        .phone-link { font-weight: 600; font-size: 0.85rem; text-decoration: none; color: var(--text-main); }
        nav a { text-decoration: none; color: var(--text-muted); font-size: 0.85rem; margin-left: 25px; transition: color 0.2s; }
        nav a:hover { color: var(--text-main); }
        .nav-cta { color: var(--accent) !important; font-weight: 600; }
		/* HEADER - STICKY UPDATE */
        header { 
            padding: 20px 0; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            border-bottom: 1px solid #f2f2f2; 
            position: sticky;
            top: 0;
            background-color: rgba(255, 255, 255, 0.95); /* Półprzezroczyste białe tło */
            backdrop-filter: blur(10px); /* Efekt rozmycia tła w stylu Apple */
            z-index: 1000; /* Gwarancja, że nagłówek będzie nad innymi elementami */
            transition: padding 0.3s ease;
        }
        .policy-wrapper { padding: 80px 0; }
        
        h1 { font-size: 3rem; font-weight: 800; letter-spacing: -0.05em; margin-bottom: 40px; }
        h2 { font-size: 1.4rem; font-weight: 700; margin: 40px 0 20px; color: var(--text-main); letter-spacing: -0.02em; }
        h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 15px; color: var(--text-main); }

        p, li { font-size: 1rem; color: var(--text-muted); margin-bottom: 15px; }
        ul, ol { margin-left: 20px; margin-bottom: 20px; }
        li { margin-bottom: 10px; padding-left: 5px; }

        .admin-info {
            background: #f5f5f7;
            padding: 30px;
            border-radius: 16px;
            margin: 20px 0;
        }

footer { 
            padding: 80px 0 60px; 
            border-top: 1px solid #f2f2f2; 
            margin-top: 50px;
        }

        .footer-three-cols { 
            display: grid; 
            grid-template-columns: 1.5fr 1fr 1fr; 
            gap: 40px; 
        }

        .footer-col-info {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-col-info strong {
            display: block;
            margin-bottom: 8px;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
        }

        .footer-col-info p {
            color: var(--text-muted);
            max-width: 280px;
        }

        .footer-col-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-col-links a, .footer-col-links p {
            font-size: 0.85rem;
            text-decoration: none;
            color: var(--text-main);
            transition: opacity 0.2s;
        }

        .footer-col-links a:hover {
            opacity: 0.6;
        }

        .footer-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 12px;
            display: block;
        }

        .footer-legal {
            color: var(--text-muted) !important;
            margin-top: 10px;
            display: block;
        }

        .linkedin-link {
            display: inline-block;
            margin-top: 15px;
            font-weight: 600;
            text-decoration: none;
            color: var(--text-main);
            font-size: 0.85rem;
        }

        @media (max-width: 850px) {
            .footer-three-cols { grid-template-columns: 1fr; gap: 40px; }
        }

        strong { color: var(--text-main); }
