/* Variables */
        :root {
            --primary: #7540db;
            --primary-light: #8a53f2;
            --primary-dark: #5d2bb1;
            --secondary: #f04e98;
            --light: #ffffff;
            --light-gray: #f8f9fc;
            --gray: #e0e0e0;
            --dark-gray: #757575;
            --dark: #222236;
            --black: #14141e;
            --accent: #ff9100;
            --success: #4caf50;
            --error: #f44336;
            --warning: #ff9800;
            --text-primary: #14141e;
            --text-secondary: #4f4f6f;
            --text-tertiary: #79798f;
            --transition: all 0.25s ease;
            --border-radius: 8px;
            --card-radius: 12px;
            --box-shadow: 0 5px 20px rgba(20, 20, 30, 0.08);
            --button-shadow: 0 4px 12px rgba(117, 64, 219, 0.15);
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            background-color: var(--light-gray);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            font-weight: 400;
        }

        body.no-scroll {
            overflow: hidden;
        }

        a {
            text-decoration: none;
            color: var(--text-primary);
            transition: var(--transition);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }

        /* Header & Navigation */
        header {
            background-color: rgba(20, 20, 30, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            transition: var(--transition);
            height: 70px;
        }

        header.scrolled {
            height: 60px;
            background-color: rgba(20, 20, 30, 0.98);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            z-index: 101;
        }

        .logo img {
            height: 32px;
            margin-right: 10px;
        }

        .logo h1 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: none;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 0.2rem;
            align-items: center;
        }

        .nav-links li {
            position: relative;
            display: flex;
            align-items: center;
        }

        .nav-links a {
            position: relative;
            padding: 0.6rem 0.8rem;
            color: var(--light);
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .nav-links a i {
            margin-right: 6px;
            font-size: 0.95rem;
            opacity: 0.8;
        }

        .nav-links a:hover {
            color: var(--primary-light);
            background-color: rgba(255, 255, 255, 0.05);
        }

        .nav-links a.active {
            color: var(--primary-light);
            background-color: rgba(117, 64, 219, 0.1);
        }

        /* Dropdown menu style */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            min-width: 200px;
            background-color: var(--dark);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 101;
            border-radius: var(--border-radius);
            margin-top: 5px;
            border-top: 2px solid var(--primary);
            padding: 0.5rem;
            animation: fadeIn 0.2s ease;
        }

        .dropdown-content::before {
            content: '';
            position: absolute;
            top: -7px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 0 6px 7px 6px;
            border-style: solid;
            border-color: transparent transparent var(--primary) transparent;
        }

        .dropdown-content a {
            color: var(--light);
            padding: 0.7rem 1rem;
            display: block;
            text-align: left;
            transition: var(--transition);
            border-radius: 6px;
            margin: 0.2rem 0;
        }

        .dropdown-content a i {
            margin-right: 8px;
            width: 16px;
            text-align: center;
        }

        .dropdown-content a:hover {
            background-color: rgba(117, 64, 219, 0.1);
            color: var(--primary-light);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown > a::after {
            content: '\f107'; /* Fontawesome angle-down icon */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 6px;
            font-size: 0.7rem;
            transition: transform 0.3s ease;
            opacity: 0.8;
        }

        .dropdown:hover > a::after {
            transform: rotate(180deg);
        }

        /* Mobile menu control */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.3rem;
            padding: 5px;
            z-index: 102;
        }

        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.2rem;
            cursor: pointer;
            display: none;
            z-index: 102;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            align-items: center;
            justify-content: center;
        }

        .close-menu:hover {
            background-color: var(--primary);
            transform: rotate(90deg);
        }

        /* Menu overlay */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(20, 20, 30, 0.7);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            z-index: 99;
        }

        .menu-overlay.active {
            display: block;
        }

        /* Main content */
        main {
            padding-top: 70px;
            padding-bottom: 3rem;
        }

        /* Policy Header */
        .policy-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: white;
            padding: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .policy-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI0MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIxMDAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiIGlkPSJhIj48c3RvcCBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9Ii4xIiBvZmZzZXQ9IjAlIi8+PHN0b3Agc3RvcC1jb2xvcj0iI0ZGRiIgc3RvcC1vcGFjaXR5PSIuMDUiIG9mZnNldD0iMTAwJSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxwYXRoIGQ9Ik0wIDI1QzE1MCAyNSAyNzIgNzUgNDIwIDc1QzU2OCA3NSA3MjAgMjUgOTAwIDI1QzEwODAgMjUgMTIwMCA3NSAxNDQwIDc1VjQwMEgwVjI1WiIgZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: 1;
        }

        .policy-header-content {
            position: relative;
            z-index: 2;
        }

        .policy-header h1 {
            color: white;
            margin-bottom: 0.5rem;
        }

        .policy-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Policy Content */
        .policy-container {
            background-color: white;
            border-radius: var(--card-radius);
            box-shadow: var(--box-shadow);
            padding: 2.5rem;
            margin-bottom: 3rem;
        }

        .table-of-contents {
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
            padding: 1.5rem 2rem;
            margin: 1.5rem 0 2.5rem;
        }

        .table-of-contents h3 {
            margin-top: 0;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            color: var(--text-primary);
        }

        .table-of-contents ul {
            list-style-type: none;
            margin-left: 0;
            margin-bottom: 0;
        }

        .table-of-contents li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }

        .table-of-contents a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }

        .table-of-contents a:hover {
            color: var(--primary);
            text-decoration: none;
        }

        .table-of-contents i {
            color: var(--primary);
            margin-right: 0.8rem;
            font-size: 0.8rem;
        }

        .section {
            margin-bottom: 2.5rem;
            scroll-margin-top: 80px;
        }

        .section strong.title {
            display: block;
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--light-gray);
        }

        .section strong.subtitle {
            display: block;
            font-size: 1.2rem;
            color: var(--primary);
            margin: 1.5rem 0 0.8rem;
        }

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

        .section p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .section ul, .section ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .section ul li, .section ol li {
            margin-bottom: 0.7rem;
        }

        .highlight-box {
            background: linear-gradient(45deg, rgba(117, 64, 219, 0.05), rgba(240, 78, 152, 0.05));
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 1.5rem 0;
        }

        .highlight-box strong {
            display: block;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .last-update {
            display: inline-block;
            background-color: var(--light-gray);
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-tertiary);
        }

        .last-update i {
            margin-right: 0.5rem;
            color: var(--primary);
        }

        /* Footer */
        footer {
            background-color: var(--black);
            color: var(--light);
            padding: 4rem 0 1rem;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-about {
            grid-column: span 2;
        }

        .footer-logo {
            color: var(--light);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-logo span {
            color: var(--primary);
        }

        .footer-text {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            max-width: 400px;
        }

        .social-links {
            display: flex;
            gap: 0.8rem;
        }

        .social-links a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-size: 1rem;
            color: var(--light);
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(117, 64, 219, 0.3);
            color: white;
        }

        .footer-links h4 {
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.8rem;
            color: var(--light);
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: var(--dark-gray);
            transition: var(--transition);
            position: relative;
            padding-left: 0;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 8px;
        }

        .footer-links a::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: -12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
            opacity: 0;
            transition: var(--transition);
        }

        .footer-links a:hover::before {
            opacity: 1;
            left: 0;
        }

        .newsletter {
            max-width: 500px;
            margin: 0 auto 3rem;
            text-align: center;
        }

        .newsletter h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--light);
        }

        .newsletter p {
            color: var(--dark-gray);
            margin-bottom: 1.2rem;
            font-size: 0.9rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--light);
            font-size: 0.9rem;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary);
            background-color: rgba(255, 255, 255, 0.1);
        }

        .newsletter-form .btn {
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            border: none;
            font-size: 0.85rem;
            gap: 0.5rem;
            line-height: 1.4;
            background: linear-gradient(45deg, var(--primary), var(--primary-light));
            color: white;
            position: relative;
            z-index: 1;
            overflow: hidden;
            box-shadow: var(--button-shadow);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--dark-gray);
            font-size: 0.85rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: var(--dark-gray);
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: var(--transition);
            z-index: 99;
            box-shadow: 0 5px 15px rgba(117, 64, 219, 0.3);
            font-size: 0.9rem;
        }

        .back-to-top.visible {
            opacity: 1;
        }

        .back-to-top:hover {
            background: var(--primary-light);
            transform: translateY(-5px);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                max-width: 1000px;
            }
        }

        @media (max-width: 992px) {
            .container {
                max-width: 800px;
            }
            
            .footer-about {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            
            .container {
                max-width: 100%;
            }
            
            .hamburger {
                display: block;
            }
            
            .close-menu {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                flex-direction: column;
                background-color: var(--dark);
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
                padding: 80px 1.5rem 2rem;
                z-index: 101;
                overflow-y: auto;
                transition: left 0.3s ease;
                align-items: flex-start;
                gap: 0;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                width: 100%;
            }
            
            .nav-links a {
                padding: 1rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                width: 100%;
                border-radius: 0;
            }
            
            .dropdown-content {
                position: static;
                transform: none;
                min-width: auto;
                background-color: transparent;
                box-shadow: none;
                border-top: none;
                padding: 0;
                margin: 0;
                margin-left: 1rem;
                border-left: 2px solid var(--primary);
                display: none;
            }
            
            .dropdown-content::before {
                display: none;
            }
            
            .dropdown-content a {
                padding: 0.7rem 1rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            
            .dropdown:hover .dropdown-content {
                display: none;
            }
            
            .dropdown > a.active + .dropdown-content {
                display: block;
            }
            
            .policy-container {
                padding: 1.5rem;
            }
            
            .policy-header {
                padding: 2rem 0;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }

            .table-of-contents {
                padding: 1.2rem;
            }
        }

        @media (max-width: 576px) {
            html {
                font-size: 14px;
            }
            
            .policy-header h1 {
                font-size: 2rem;
            }
            
            .footer-bottom-links {
                flex-direction: column;
                gap: 0.8rem;
            }

            .section strong.title {
                font-size: 1.3rem;
            }

            .section strong.subtitle {
                font-size: 1.1rem;
            }
        }