
        :root {
            --primary-bg: #121212;
            --secondary-bg: #1e1e1e;
            --accent-color: #ff7b00;
            --accent-hover: #ff9500;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0b0;
            --border-radius: 8px;
            --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }

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

        html, body {
            width: 100%;
            overflow-x: hidden;
        }
/* Logo styling for privacy policy header */
.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.header-logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.header-logo h1 {
    margin-bottom: 0 !important;
    padding-bottom: 15px;
}

.header-logo h1::after {
    left: 40%;
    transform: translateX(-50%);
}
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            background: var(--primary-bg);
            color: var(--text-primary);
            min-height: 100vh;
            padding: 0;
            margin: 0;
        }

        .container {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            background-color: var(--secondary-bg);
            padding: 20px;
            border-radius: 0;
            box-shadow: none;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), #ff5500);
        }

        h1 {
            color: var(--accent-color);
            font-size: clamp(1.2rem, 4vw, 2rem);
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
        }

        h2 {
            color: var(--accent-color);
            font-size: clamp(1rem, 3vw, 1.2rem);
            margin: 25px 0 15px;
            padding-left: 15px;
            border-left: 4px solid var(--accent-color);
        }

        p {
            margin-bottom: 20px;
            color: var(--text-secondary);
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        ul {
            margin: 15px 0;
            padding-left: 20px;
        }

        li {
            margin-bottom: 10px;
            color: var(--text-secondary);
            position: relative;
            padding-left: 10px;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        li::before {
            content: '•';
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: -10px;
        }

        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
            border-bottom: 1px dotted transparent;
        }

        a:hover {
            color: var(--accent-hover);
            border-bottom: 1px dotted var(--accent-hover);
        }

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

        /* Cookie Consent */
        #cookieConsent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(30, 30, 30, 0.95);
            color: white;
            padding: 15px;
            text-align: center;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
            border-top: 2px solid var(--accent-color);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        #cookieConsent.show {
            transform: translateY(0);
        }

        #cookieConsent span {
            max-width: 100%;
            line-height: 1.6;
            font-size: clamp(0.9rem, 3vw, 1rem);
        }

        #cookieConsent button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(255, 123, 0, 0.3);
            font-size: clamp(0.9rem, 3vw, 1rem);
        }

        #cookieConsent button:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 123, 0, 0.4);
        }

        /* Back to top button */
        #backToTop {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--accent-color);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        #backToTop.show {
            opacity: 1;
            visibility: visible;
        }

        #backToTop:hover {
            background-color: var(--accent-hover);
            transform: translateY(-3px);
        }

        /* Progress bar */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            z-index: 100;
        }

        .progress-bar {
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), #ff5500);
            width: 0%;
            transition: width 0.3s ease;
        }

        /* Section animations */
        section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            margin-bottom: 30px;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .container {
                padding: 30px;
            }
            
            h1 {
                margin-bottom: 30px;
            }
            
            h2 {
                margin: 30px 0 20px;
            }
            
            #cookieConsent {
                flex-direction: row;
                justify-content: center;
                padding: 20px;
            }
            
            #cookieConsent span {
                margin-right: 20px;
                margin-bottom: 0;
            }
        }

        @media (min-width: 1024px) {
            .container {
                max-width: 1200px;
                padding: 40px;
                margin: 0 auto;
                border-radius: var(--border-radius);
                box-shadow: var(--box-shadow);
                margin-top: 20px;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 15px;
            }
            
            h2 {
                padding-left: 10px;
                margin: 20px 0 12px;
            }
            
            ul {
                padding-left: 15px;
            }
            
            #backToTop {
                bottom: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
            }
        }

        /* Loading animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 123, 0, 0.3);
            border-radius: 50%;
            border-top-color: var(--accent-color);
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }
  