* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }
        
        body {
            background-color: #0a0e27;
            color: #e0e6ed;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(79, 172, 254, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #4facfe;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .logo span {
            color: #00f2fe;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: #e0e6ed;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #00f2fe;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 25px;
            position: relative;
        }
        
        .burger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #4facfe;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .burger span:nth-child(1) {
            top: 0px;
        }
        
        .burger span:nth-child(2) {
            top: 8px;
        }
        
        .burger span:nth-child(3) {
            top: 16px;
        }
        
        .burger.active span:nth-child(1) {
            top: 8px;
            transform: rotate(135deg);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }
        
        .burger.active span:nth-child(3) {
            top: 8px;
            transform: rotate(-135deg);
        }
        
        /* Privacy Policy Section */
        .privacy-policy {
            padding: 150px 0 100px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h1 {
            font-size: 42px;
            color: #4facfe;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h1::after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00f2fe, transparent);
            bottom: -10px;
            left: 20%;
        }
        
        .section-title p {
            color: #a0b0c0;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .privacy-content {
            background: rgba(20, 25, 55, 0.7);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(79, 172, 254, 0.2);
        }
        
        .privacy-content h2 {
            color: #00f2fe;
            margin: 30px 0 15px;
            font-size: 24px;
        }
        
        .privacy-content h2:first-child {
            margin-top: 0;
        }
        
        .privacy-content h3 {
            color: #4facfe;
            margin: 20px 0 10px;
            font-size: 20px;
        }
        
        .privacy-content p {
            color: #c0cfe0;
            margin-bottom: 15px;
        }
        
        .privacy-content ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .privacy-content ul li {
            color: #c0cfe0;
            margin-bottom: 8px;
        }
        
        /* Footer */
        footer {
            background: #0a0e27;
            padding: 50px 0 20px;
            border-top: 1px solid rgba(79, 172, 254, 0.2);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-column {
            width: 30%;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: #4facfe;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #a0b0c0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #00f2fe;
        }
        
        .footer-contact {
            color: #a0b0c0;
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(79, 172, 254, 0.1);
        }
        
        .footer-bottom p {
            color: #a0b0c0;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(10, 14, 39, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transform: translateX(-100%);
                transition: transform 0.5s ease;
            }
            
            .nav-menu.active {
                transform: translateX(0);
            }
            
            .nav-menu li {
                margin: 0 0 30px 0;
            }
            
            .burger {
                display: block;
            }
            
            .section-title h1 {
                font-size: 32px;
            }
            
            .privacy-content {
                padding: 20px;
            }
            
            .footer-column {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .privacy-policy {
                padding: 120px 0 80px;
            }
            
            .section-title h1 {
                font-size: 28px;
            }
            
            .footer-bottom {
                text-align: left;
            }
        }

