﻿
        :root {
            --primary-color: #3a86ff;
            --secondary-color: #8338ec;
            --accent-color: #ff006e;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
            --success-color: #38b000;
            --border-radius: 10px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            background-color: #f9fbfd;
            line-height: 1.6;
        }
        
        .privacy-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }
        .headernew {
    background:#0f172a;
        }
        
.border-primary {
  
    border-color: rgb(229 232 237) !important;
} 
.animate-on-scroll {
    opacity: 1 !important;
}       
        .policy-header {
            /* background: linear-gradient(135deg, #0f172a, #a07ed1); */
            color: white;
            padding: 18px 10px;
            border-radius: var(--border-radius);
            margin-bottom: 2.5rem;
            box-shadow: var(--box-shadow);
            position: relative;
            overflow: hidden;
        }
        
        .policy-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .policy-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 250px;
            height: 250px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .policy-header h1 {
            font-weight: 500;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
            color: #55497a;
            font-size: 39px;
        }
        
        .policy-header p {
            font-size: 17px;
            opacity: 1;
            position: relative;
            z-index: 2;
            color: #000;
        }
        
        .last-updated {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            display: inline-block;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        
        .policy-section {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border-left: 5px solid transparent;
        }
        
        .policy-section:hover {
            transform: translateY(-5px);
            border-left-color: #c2c889
        }
        
        .section-title {
            color: #cf8c47;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            background-color: rgba(58, 134, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .definition-box {
            background-color: #f8f9ff;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 1.5rem 0;
            /* border-left: 4px solid #8e9b11; */
        }
        
        .definition-title {
            color: #55497a;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .text-primary{
            color: #55497a !important;
        }
        .contact-info {
            background: linear-gradient(135deg, #f8f9ff, #e9ecef);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin-top: 2rem;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .contact-method i {
            background-color: var(--primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .highlight-box {
            background-color: #fff9f0;
            /* border-left: 5px solid var(--accent-color); */
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 2rem 0;
        }
        
        .promise-list li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 2rem;
        }
        
        .promise-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-weight: bold;
        }
        
        .footer-note {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #dee2e6;
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        .section-content ul {
            padding-left: 1.5rem;
        }
        
        .section-content li {
            margin-bottom: 0.8rem;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .policy-header {
                padding: 2rem 1.5rem;
            }
            
            .policy-section {
                padding: 1.5rem;
            }
            
            .contact-info {
                padding: 1.5rem;
            }
        }
    