:root {
            --primary-color: #F96900;
            --primary-light: #ff8c3f;
            --primary-dark: #c95400;
            --secondary-color: #65DEF1;
            --secondary-light: #8be7f5;
            --secondary-dark: #3bbcce;
            --dark-accent: #333333;
            --light-bg: #F7F7F7;
            --light-gray: #e5e5e5;
            --medium-gray: #777;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #F96900 0%, #ff8c3f 100%);
            --gradient-secondary: linear-gradient(135deg, #65DEF1 0%, #3bbcce 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Navigation styling - from index.html */
        nav {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            transition: background-color 0.3s ease;
        }

        nav.scrolled {
            background-color: rgba(249, 105, 0, 0.95);
            backdrop-filter: blur(10px);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            width: 100%;
            max-width: none;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1rem;
            padding: 0;
            margin: 0;
            margin-left: auto;
        }
        
        .nav-links li {
            margin: 0;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        
        .nav-links a:hover {
            background-color: var(--white);
            color: var(--primary-color);
        }

        .cta-nav {
            background-color: var(--white);
            color: var(--primary-color) !important;
            font-weight: 600;
            border-radius: 25px;
            padding: 0.6rem 1.5rem !important;
            margin-left: 1rem;
        }

        .cta-nav:hover {
            background-color: var(--secondary-color);
            color: var(--white) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .privacy-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 8rem 2rem 4rem;
            background: white;
            margin-top: 2rem;
            margin-bottom: 2rem;
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
        }

        .privacy-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .privacy-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #f3f4f6;
        }

        .privacy-title {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .privacy-subtitle {
            font-size: 1.125rem;
            color: #6b7280;
            font-weight: 400;
        }

        .last-updated {
            background: #f3f4f6;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary-color);
        }

        .last-updated strong {
            color: #374151;
        }

        /* Typography */
        h1 {
            font-size: 2.25rem;
            font-weight: 700;
            color: #1f2937;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e5e7eb;
        }

        h2 {
            font-size: 1.75rem;
            font-weight: 600;
            color: #374151;
            margin: 2rem 0 1rem 0;
        }

        h3 {
            font-size: 1.375rem;
            font-weight: 600;
            color: #4b5563;
            margin: 1.5rem 0 0.75rem 0;
        }

        p {
            margin-bottom: 1rem;
            color: #4b5563;
            font-size: 1rem;
        }

        ul, ol {
            margin: 1rem 0 1rem 1.5rem;
            color: #4b5563;
        }

        li {
            margin-bottom: 0.5rem;
        }

        strong {
            color: #1f2937;
            font-weight: 600;
        }

        /* Special Elements */
        .contact-info {
            background: linear-gradient(135deg, rgba(249, 105, 0, 0.1), rgba(101, 222, 241, 0.1));
            padding: 1.5rem;
            border-radius: 0.75rem;
            margin: 1.5rem 0;
            border: 1px solid rgba(249, 105, 0, 0.2);
        }

        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .rights-card {
            background: #f9fafb;
            padding: 1.25rem;
            border-radius: 0.5rem;
            border-left: 4px solid var(--primary-color);
        }

        .rights-card h4 {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .rights-card p {
            font-size: 0.875rem;
            margin: 0;
        }

        /* Table of Contents */
        .toc {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: 0.75rem;
            margin: 2rem 0;
            border: 1px solid #e2e8f0;
        }

        .toc h3 {
            margin-top: 0;
            color: #1f2937;
        }

        .toc ul {
            margin-left: 1rem;
        }

        .toc a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .toc a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* Footer */
        .privacy-footer {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #f3f4f6;
            color: #6b7280;
        }

        .back-to-top {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 500;
            transition: transform 0.3s ease;
            margin-top: 1rem;
        }

        .back-to-top:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(249, 105, 0, 0.3);
        }
         /* Dropdown styling */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            cursor: pointer;
            user-select: none;
        }

        .dropdown-arrow {
            margin-left: 5px;
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .dropdown.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            list-style: none;
            padding: 8px 0;
            margin: 8px 0 0 0;
        }

        .dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color: var(--dark-accent);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
            border-radius: 0;
            white-space: nowrap;
        }

        .dropdown-menu a:hover {
            background-color: var(--light-bg);
            color: var(--primary-color);
        }

        .dropdown-menu a i {
            margin-right: 10px;
            width: 16px;
            text-align: center;
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .privacy-container {
                margin: 1rem;
                padding: 6rem 1.5rem 2rem;
            }

            .privacy-title {
                font-size: 2rem;
            }

            h1 {
                font-size: 1.75rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .rights-grid {
                grid-template-columns: 1fr;
            }

            .nav-container {
                padding: 0 1rem;
            }

            .nav-links {
                gap: 1rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        :target {
            scroll-margin-top: 100px;
            animation: highlight 2s ease-in-out;
        }

        @keyframes highlight {
            0% { background-color: rgba(249, 105, 0, 0.1); }
            100% { background-color: transparent; }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-container {
                padding: 1rem 3%;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--primary-color);
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .privacy-container {
                margin: 1rem;
                padding: 6rem 1.5rem 2rem;
            }

            .privacy-title {
                font-size: 2rem;
            }

            .rights-grid {
                grid-template-columns: 1fr;
            }
        }