        :root {
            --main-bg: #151616;
            --primary-bg: #363636;
            --accent-gold: #ba942e;
            --text-light: #e8e5da;
            --button-primary: #ba942e;
            
            --gradient-dark: linear-gradient(135deg, #363636 0%, #2a2a2a 100%);
            --gradient-gold: linear-gradient(135deg, #ba942e 0%, #a88425 100%);
            --gradient-card: linear-gradient(135deg, #1c1d1d 0%, #151616 100%);
            --shadow-dark: rgba(0, 0, 0, 0.3);
            --border-dark: #2a2b2b;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            color: var(--text-light);
            background: var(--main-bg);
            line-height: 1.6;
        }
        
        /* Header Section */
        .policy-header {
            background: var(--gradient-dark);
            padding: 80px 0;
            color: var(--text-light);
            position: relative;
            overflow: hidden;
            border-bottom: 2px solid var(--accent-gold);
        }
        
        .policy-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(186, 148, 46, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
            z-index: 1;
        }
        
        .policy-title {
            font-weight: 700;
            font-size: 3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
            color: var(--text-light);
        }
        
        .policy-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            color: var(--text-light);
        }
        
        /* Last Updated Badge */
        .update-badge {
            background: rgba(186, 148, 46, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 8px 20px;
            display: inline-block;
            margin-top: 20px;
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
            border: 1px solid rgba(186, 148, 46, 0.3);
            color: var(--text-light);
        }
        
        /* Main Content */
        .policy-main-content {
            padding: 80px 0;
        }
        
        .policy-section-card {
            background: var(--primary-bg);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px var(--shadow-dark);
            margin-bottom: 40px;
            border: 1px solid var(--border-dark);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .policy-section-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-gold);
        }
        
        .policy-section-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(186, 148, 46, 0.3);
        }
        
        .section-heading {
            color: var(--text-light);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-gold);
            display: inline-block;
        }
        
        .highlight-box {
            background: var(--gradient-card);
            border-left: 4px solid var(--accent-gold);
            padding: 25px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
            border: 1px solid var(--border-dark);
        }
        
        .highlight-box-title {
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Numbered Content Sections */
        .numbered-content {
            counter-increment: content-section;
            margin-bottom: 40px;
            position: relative;
            padding-left: 60px;
        }
        
        .numbered-content::before {
            content: counter(content-section);
            position: absolute;
            left: 0;
            top: 0;
            width: 45px;
            height: 45px;
            background: var(--gradient-gold);
            color: var(--main-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(186, 148, 46, 0.3);
        }
        
        /* Custom List Styling */
        .styled-list {
            list-style: none;
            padding-left: 0;
        }
        
        .styled-list-item {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            color: var(--text-light);
        }
        
        .styled-list-item::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 12px;
            width: 24px;
            height: 24px;
            background: var(--accent-gold);
            color: var(--main-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        /* Compliance Badges */
        .compliance-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .compliance-item {
            background: var(--gradient-card);
            border: 1px solid var(--border-dark);
            border-radius: 8px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .compliance-item:hover {
            border-color: var(--accent-gold);
            transform: translateY(-2px);
        }
        
        .compliance-icon {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }
        
        /* Footer Section */
        .policy-footer {
            background: var(--primary-bg);
            color: var(--text-light);
            padding: 60px 0;
            text-align: center;
            border-top: 2px solid var(--accent-gold);
        }
        
        .contact-container {
            background: var(--main-bg);
            border-radius: 12px;
            padding: 30px;
            margin-top: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid var(--border-dark);
            position: relative;
            overflow: hidden;
        }
        
        .contact-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-gold);
        }
        
        .contact-link {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .contact-link:hover {
            color: #d4b151;
            text-decoration: underline;
        }
        
        /* Security Features */
        .security-feature-card {
            background: var(--gradient-card);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid var(--border-dark);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .security-feature-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-3px);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: var(--main-bg);
            font-size: 1.2rem;
        }
        
        /* Button Styling */
        .gold-button {
            background: var(--button-primary);
            color: var(--main-bg);
            border: none;
            padding: 10px 25px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .gold-button:hover {
            background: #d4b151;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(186, 148, 46, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .policy-title {
                font-size: 2.2rem;
            }
            
            .policy-header {
                padding: 60px 0;
            }
            
            .policy-main-content {
                padding: 40px 0;
            }
            
            .policy-section-card {
                padding: 25px;
            }
            
            .numbered-content {
                padding-left: 50px;
            }
            
            .numbered-content::before {
                width: 40px;
                height: 40px;
            }
            
            .compliance-container {
                justify-content: center;
            }
        }
        
        /* Animation Effects */
        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-appear {
            opacity: 0;
            animation: fadeSlideUp 0.6s ease forwards;
        }
        
        .animation-delay-1 {
            animation-delay: 0.2s;
        }
        
        .animation-delay-2 {
            animation-delay: 0.4s;
        }
        
        /* Custom Scrollbar */
        .custom-scrollbar::-webkit-scrollbar {
            width: 10px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-track {
            background: var(--primary-bg);
        }
        
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 5px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #d4b151;
        }
        
        /* Text Emphasis */
        .emphasis-text {
            color: var(--accent-gold);
        }
        
        /* Link Styling */
        .gold-link {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .gold-link:hover {
            color: #d4b151;
        }
        
        /* Divider Styling */
        .gold-divider {
            border-color: var(--border-dark);
            opacity: 0.5;
        }