        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: #f9fafc;
            color: #1e2a3a;
            line-height: 1.6;
            padding-top: 140px; /* fixed header space */
            scroll-behavior: smooth;
        }
        .page-wrapper { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

        /* ----- header (mirror home) ----- */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 4px 16px rgba(0,20,40,0.08);
            z-index: 1000;
        }
        .logo-row {
            padding: 0.6rem 2rem;
            border-bottom: 1px solid rgba(13,71,161,0.1);
            background: white;
        }
        .company-logo {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 2rem;
        }
        .logo-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
        .company-logo img {
            height: 56px;
            width: auto;
            display: block;
            border-radius: 12px;
        }
        .slogan-text {
            font-size: 1.25rem;
            font-weight: 600;
            color: #0d47a1;
            background: #e3f2fd;
            padding: 0.4rem 1.4rem;
            border-radius: 40px;
            white-space: nowrap;
            border: 1px solid rgba(13,71,161,0.2);
        }
        .header-cta { display: flex; gap: 12px; }
        .header-cta a {
            background: #0d47a1;
            color: white;
            text-decoration: none;
            padding: 0.4rem 1.4rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        .header-cta a:hover { background: #1565c0; }
        .header-cta a.signup { background: #4CAF50; }
        .header-cta a.signup:hover { background: #3d8b40; }

        .nav-row {
            background: #0d47a1;
            color: white;
            width: 100%;
        }
        .main-nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 0.1rem 2rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.2rem;
        }
        .nav-links li a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 0.4rem 1.2rem;
            font-weight: 500;
            border-radius: 30px;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .nav-links li a:hover { background: #4CAF50; }
        .nav-links li a.active { background: #4CAF50; }

        /* ----- privacy content (enhanced from original) ----- */
        .privacy-card {
            background: white;
            border-radius: 32px;
            padding: 2.5rem 2.8rem;
            box-shadow: 0 8px 20px rgba(0,20,50,0.06);
            margin: 0 0 2.5rem 0;
            border: 1px solid rgba(13,71,161,0.06);
        }

        h1 { font-size: 2.4rem; color: #0d47a1; margin-bottom: 0.5rem; font-weight: 700; }
        .last-updated { font-size: 0.9rem; color: #6f6e85; margin-bottom: 2rem; display: block; }

        h2 {
            font-size: 1.5rem;
            margin-top: 2.2rem;
            color: #0d47a1;
            border-bottom: 1px solid #eef2f6;
            padding-bottom: 10px;
            font-weight: 600;
        }
        p { margin-bottom: 1.2rem; color: #2c3e50; }

        /* trust summary */
        .trust-summary {
            background: #f4f8fd;
            border: 1px solid #d0e3ff;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 2.5rem 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .summary-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 1rem;
            color: #1e2a3a;
        }
        .summary-item i { color: #4CAF50; margin-top: 4px; font-size: 1.2rem; }

        /* back link */
        .back-link {
            display: inline-block;
            margin-bottom: 1.5rem;
            color: #0d47a1;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
        }
        .back-link i { margin-right: 8px; }

        footer {
            background: white;
            padding: 32px 24px;
            text-align: center;
            border-top: 1px solid #eef2f6;
            border-radius: 40px 40px 0 0;
            margin-top: 2rem;
            color: #6f6e85;
        }

        /* mobile */
        @media (max-width: 768px) {
            body { padding-top: 0; }
            .site-header { position: relative; }
            .logo-row { padding: 0.5rem 1rem; }
            .company-logo img { height: 42px; }
            .slogan-text { display: none; }
            .header-cta { flex-direction: column; gap: 6px; margin-left: auto; }
            .header-cta a { padding: 0.25rem 1rem; font-size: 0.8rem; min-width: 70px; }
            .main-nav { padding: 0.2rem 1rem; overflow-x: auto; }
            .nav-links { flex-wrap: nowrap; overflow-x: auto; white-space: nowrap; }
            .privacy-card { padding: 1.5rem; }
            h1 { font-size: 2rem; }
            .trust-summary { grid-template-columns: 1fr; padding: 1.5rem; }
 
   			/* ==================================================================
       		SAFARI-ONLY OVERRIDES (Android Chrome ignores this entirely)
       		================================================================== */
    			@supports (-webkit-hyphens:none) {
				html {
        				font-size: 22px !important; /* Slightly scales up layout elements on dense screens, rendering 					identically to Android font-boosting */
    				}
    
    				body {
        				font-size: 22px !important;
    				}

        			/* Scale up the image height slightly on Safari to match the visual look */
        			.company-logo img { 
            			height: 52px !important; 
        			}

       			 /* Scale up the CTA button text and tap padding targets for iOS Safari */
       			 .header-cta a {
            			font-size: 0.95rem !important;      /* Bumps font from 0.8rem up */
            			padding: 0.4rem 1.1rem !important;  /* Bumps padding from 0.25rem up */
        			}
			}

       }
        @media (min-width: 769px) and (max-width: 992px) {
            .privacy-card { padding: 2rem; }
        }
        /* Safari text size */
        @supports (-webkit-hyphens:none) {
            body { font-size: 18px !important; }
        }

