
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            line-height: 1.6;
            color: #334155;
            background-color: #f8fafc;
        }
        .privacyPolicyPage *{
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            
        }

        /* Typography */
        .privacyPolicyPage h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .privacyPolicyPage h2 {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--baseblack);
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }

        .privacyPolicyPage h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #475569;
            margin: 1.5rem 0 0.75rem 0;
        }

        .privacyPolicyPage p {
            margin-bottom: 1rem;
            text-align: justify;
        }

        .privacyPolicyPage .section ul {
            list-style: disc;
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .privacyPolicyPage .section li {
            margin-bottom: 0.5rem;
        }

        /* Header */
        .privacyPolicyPage .header {
            background: #fff;
            border-bottom: 1px solid #e2e8f0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.95);
        }

        .privacyPolicyPage .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .privacyPolicyPage .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--orange);
        }

        .privacyPolicyPage .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin: 0;
        }

        .privacyPolicyPage .nav-links a {
            text-decoration: none;
            color: #64748b;
            font-weight: 500;
            transition: color 0.2s;
        }

        .privacyPolicyPage .nav-links a:hover,
        .privacyPolicyPage .nav-links a.active {
            color: var(--orange);
        }

        /* Main Container */
        .privacyPolicyPage {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            background: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            margin-top: 2rem;
            margin-bottom: 2rem;
            border-radius: 8px;
        }

        /* Header Section */
        .privacyPolicyPage .document-header {
            text-align: center;
            padding: 2rem 0;
            border-bottom: 2px solid #e2e8f0;
            margin-bottom: 2rem;
        }

        .privacyPolicyPage .document-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .privacyPolicyPage .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #64748b;
            font-size: 0.9rem;
        }

        /* Table of Contents */
        .privacyPolicyPage .toc {
            background: #f1f5f9;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .privacyPolicyPage .toc h3 {
            margin-top: 0;
            color: var(--baseblack);
            font-weight: 700;
        }

        .privacyPolicyPage .toc ul {
            list-style: none;
            margin: 1rem 0 0 0;
        }

        .privacyPolicyPage .toc li {
            margin: 0.5rem 0;
        }

        .privacyPolicyPage .toc a {
            text-decoration: none;
            color: #475569;
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background-color 0.2s;
        }

        .privacyPolicyPage .toc a:hover {
            background-color: #e2e8f0;
            color: var(--orange);
        }

        /* Content Sections */
        .privacyPolicyPage .section {
            margin: 3rem 0;
            scroll-margin-top: 100px;
        }

        .privacyPolicyPage .preamble {
            background: #fef3c7;
            border-left: 4px solid #f59e0b;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }

        .privacyPolicyPage .important-notice {
            background: #fee2e2;
            border-left: 4px solid #ef4444;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }

        .privacyPolicyPage .contact-info {
            background: #f0f9ff;
            border-left: 4px solid #0ea5e9;
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }

        .privacyPolicyPage .contact-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .privacyPolicyPage .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: #fff;
            border-radius: 6px;
            border: 1px solid #e0f2fe;
        }

        .privacyPolicyPage .contact-icon {
            width: 20px;
            height: 20px;
            color: #0ea5e9;
        }

        /* Scroll to Top Button */
        .scroll-top{
            position: fixed;
            bottom: 4rem;
            right: 2rem;
            background: var(--orange);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .privacyPolicyPage .header-content {
                padding: 1rem;
                flex-direction: column;
                gap: 1rem;
            }

            .privacyPolicyPage .nav-links {
                gap: 1rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .privacyPolicyPage .privacyPolicyPage {
                margin: 1rem;
                padding: 1rem;
            }

            .privacyPolicyPage h1 {
                font-size: 2rem;
            }

            .privacyPolicyPage h2 {
                font-size: 1.5rem;
            }

            .privacyPolicyPage .document-meta {
                flex-direction: column;
                gap: 1rem;
            }

            .privacyPolicyPage .toc {
                padding: 1rem;
            }

            .privacyPolicyPage .contact-details {
                grid-template-columns: 1fr;
            }
        }

        /* Print Styles */
        @media print {
            .privacyPolicyPage .header,
            .scroll-top,
            .privacyPolicyPage .toc {
                display: none;
            }

            .privacyPolicyPage {
                box-shadow: none;
                margin: 0;
                padding: 0;
            }

            .privacyPolicyPage .section {
                page-break-inside: avoid;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Link Styles */
        .privacyPolicyPage a {
            color: var(--orange);
            text-decoration: none;
        }

        .privacyPolicyPage a:hover {
            text-decoration: underline;
        }

        /* Icons using Unicode */
        .icon-calendar::before { content: "📅 "; }
        .icon-clock::before { content: "🕒 "; }
        .icon-email::before { content: "📧 "; }
        .icon-location::before { content: "📍 "; }
        .icon-up::before { content: "↑"; }
