
        :root {
            --teal: #9CEDEF;
            --teal-dark: #5bb8bb;
            --teal-deeper: #0a4a4b;
            --teal-mid: #3a9ea0;
            --white: #ffffff;
            --off-white: #f8fffe;
            --gray-100: #f1f5f9;
            --gray-600: #475569;
            --gray-900: #0f172a;
            --shadow-card: 0 8px 40px rgba(0,0,0,0.07);
            --radius-xl: 20px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Space Grotesk', sans-serif; background: var(--off-white); color: var(--gray-900); overflow-x: hidden; }

        /* NAV */
        .about-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 2rem; background: rgba(248,255,254,0.88); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(156,237,239,0.3); transition: padding 0.3s, box-shadow 0.3s; }
        .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
        .nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; font-weight: 700; font-size: 1.125rem; color: var(--gray-900); }
        .nav-logo img { height: 36px; }
        .back-btn { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--teal-deeper); font-weight: 600; font-size: 0.95rem; padding: 0.6rem 1.25rem; border-radius: 100px; border: 2px solid var(--teal); transition: all 0.2s ease; }
        .back-btn:hover { background: var(--teal); transform: translateX(-3px); }

        /* HERO */
        .page-hero { min-height: 40vh; background: linear-gradient(160deg,#9CEDEF 0%,#c5f5f6 40%,#e8fffe 70%,#f0fdfd 100%); display: flex; align-items: center; justify-content: center; padding: 120px 2rem 60px; position: relative; overflow: hidden; text-align: center; }
        .hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: blobFloat 8s ease-in-out infinite; }
        .blob-1 { width: 400px; height: 400px; background: rgba(91,184,187,0.5); top: -80px; left: -80px; }
        .blob-2 { width: 300px; height: 300px; background: rgba(167,139,250,0.3); bottom: -40px; right: -60px; animation-delay: -4s; }
        @keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1);}33%{transform:translate(25px,-25px) scale(1.05);}66%{transform:translate(-15px,15px) scale(0.95);} }
        .page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
        .hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.7); border: 1.5px solid rgba(91,184,187,0.4); color: var(--teal-deeper); padding: 0.5rem 1.25rem; border-radius: 100px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; backdrop-filter: blur(8px); animation: fadeInDown 0.6s ease both; }
        .page-hero-title { font-family: 'Bebas Neue', cursive; font-size: clamp(3rem,6vw,5rem); color: var(--teal-deeper); margin-bottom: 1rem; letter-spacing: 1px; animation: fadeInUp 0.7s ease 0.1s both; }
        .page-hero-sub { font-size: 1rem; color: var(--teal-deeper); opacity: 0.75; line-height: 1.7; animation: fadeInUp 0.7s ease 0.2s both; }
        @keyframes fadeInDown{from{opacity:0;transform:translateY(-20px);}to{opacity:1;transform:translateY(0);}}
        @keyframes fadeInUp{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}

        /* LAYOUT */
        .privacy-layout { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem 6rem; display: grid; grid-template-columns: 260px 1fr; gap: 4rem; align-items: start; }

        /* SIDEBAR TOC */
        .privacy-toc { position: sticky; top: 100px; }
        .toc-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--teal-mid); margin-bottom: 1rem; }
        .toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
        .toc-list a { text-decoration: none; color: var(--gray-600); font-size: 0.9rem; font-weight: 500; padding: 0.5rem 0.75rem; border-radius: 8px; display: block; transition: all 0.2s; border-left: 3px solid transparent; }
        .toc-list a:hover, .toc-list a.active { color: var(--teal-deeper); background: rgba(156,237,239,0.15); border-left-color: var(--teal-dark); }

        /* CONTENT */
        .privacy-content { min-width: 0; }
        .update-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(156,237,239,0.2); border: 1px solid rgba(91,184,187,0.3); color: var(--teal-mid); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600; margin-bottom: 2.5rem; }

        .privacy-section { margin-bottom: 3.5rem; scroll-margin-top: 100px; }
        .privacy-section h2 { font-family: 'Bebas Neue', cursive; font-size: 2rem; color: var(--teal-deeper); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
        .privacy-section h2 i { color: var(--teal-mid); font-size: 1.4rem; width: 36px; height: 36px; background: rgba(156,237,239,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
        .privacy-section p { color: var(--gray-600); line-height: 1.85; font-size: 0.97rem; margin-bottom: 1rem; }
        .privacy-section ul { margin: 0.5rem 0 1rem 1.25rem; color: var(--gray-600); line-height: 1.9; font-size: 0.97rem; }
        .privacy-section ul li { margin-bottom: 0.25rem; }
        .privacy-section a { color: var(--teal-mid); text-decoration: underline; }
        .section-divider { border: none; border-top: 1px solid rgba(156,237,239,0.3); margin: 3.5rem 0; }

        /* HIGHLIGHT BOX */
        .highlight-box { background: linear-gradient(135deg,rgba(156,237,239,0.12),rgba(156,237,239,0.04)); border-left: 4px solid var(--teal); border-radius: 0 var(--radius-xl) var(--radius-xl) 0; padding: 1.25rem 1.5rem; margin: 1.25rem 0; }
        .highlight-box p { margin: 0; color: var(--gray-900); font-weight: 500; }

        /* FOOTER */
        .mini-footer { padding: 2rem; text-align: center; border-top: 1px solid rgba(156,237,239,0.3); color: var(--gray-600); font-size: 0.875rem; }
        .mini-footer a { color: var(--teal-mid); text-decoration: none; }
        .mini-footer a:hover { text-decoration: underline; }

        @media(max-width:768px) {
            .privacy-layout { grid-template-columns: 1fr; }
            .privacy-toc { display: none; }
        }
  