* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #374151;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(122, 90, 248, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: white;
            text-decoration: none;
            background: linear-gradient(135deg, #FFFFFF, #FF6AD5);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
        }
        
        nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        main {
            margin-top: 70px;
        }
        
        .hero-privacy {
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .hero-privacy h1 {
            font-size: clamp(36px, 6vw, 72px);
            font-weight: 900;
            margin-bottom: 30px;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 60px;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(122, 90, 248, 0.1);
        }
        
        .privacy-section {
            margin-bottom: 50px;
        }
        
        .privacy-section h2 {
            color: #7A5AF8;
            font-size: 28px;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .privacy-section h3 {
            color: #374151;
            font-size: 20px;
            margin: 25px 0 15px 0;
            font-weight: 600;
        }
        
        .privacy-section p {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .privacy-section li {
            margin-bottom: 8px;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
            padding: 25px;
            border-radius: 15px;
            border-left: 4px solid #7A5AF8;
            margin: 25px 0;
        }
        
        .contact-info {
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-top: 40px;
        }
        
        footer {
            background: linear-gradient(135deg, #374151, #1F2937);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #FF6AD5;
        }
        
        .footer-section a {
            color: #D1D5DB;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #FF6AD5;
        }
        
        @media (max-width: 768px) {
           nav ul {
                position: fixed;
                top: 0px;
                left: 0;
                right: 0;
                background: #7A5AF8;
                flex-direction: column;
                padding: 20px;
                transform: translateY(-100%);
                transition: transform 0.3s ease;
            }
            
            nav ul.active {
                transform: translateY(0);
                top: 75px;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .privacy-content {
                padding: 40px 20px;
            }
        }

