
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #f8f9ff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #f8f9ff 0%, #e8efff 50%, #f0f7ff 100%);
            animation: gradientShift 15s ease infinite;
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background: linear-gradient(135deg, #f8f9ff 0%, #e8efff 50%, #f0f7ff 100%); }
            50% { background: linear-gradient(135deg, #f0f7ff 0%, #f8f9ff 50%, #e8efff 100%); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-10px) rotate(1deg); }
            66% { transform: translateY(-5px) rotate(-1deg); }
        }

        header {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            overflow: hidden;
        }

        .hero {
            text-align: center;
            color: #333;
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero h1 {
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 700;
            margin-bottom: 30px;
            color: #667eea;
            text-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.3)); }
            to { filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.5)); }
        }

        .hero p {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            margin-bottom: 50px;
            font-weight: 400;
            color: #555;
            letter-spacing: 0.3px;
        }

        .cta-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .cta-button {
            position: relative;
            display: inline-flex;
            align-items: center;
            padding: 18px 35px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            border: 2px solid transparent;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .floating-icon {
            position: absolute;
            color: rgba(102, 126, 234, 0.2);
            font-size: 2rem;
            animation: floatUp 20s infinite linear;
        }

        .floating-icon:nth-child(1) { left: 10%; animation-delay: -5s; }
        .floating-icon:nth-child(2) { left: 20%; animation-delay: -1s; }
        .floating-icon:nth-child(3) { left: 30%; animation-delay: -8s; }
        .floating-icon:nth-child(4) { left: 70%; animation-delay: -3s; }
        .floating-icon:nth-child(5) { left: 80%; animation-delay: -6s; }
        .floating-icon:nth-child(6) { left: 90%; animation-delay: -2s; }

        @keyframes floatUp {
            from {
                transform: translateY(100vh) rotate(0deg);
                opacity: 1;
            }
            to {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        .features {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .features h2 {
            text-align: center;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 60px;
            color: #333;
            font-weight: 700;
            position: relative;
        }

        .features h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .feature-card {
            background: #f8f9ff;
            border: 1px solid #e0e7ff;
            padding: 40px 25px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
            border-color: #667eea;
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            display: block;
            color: #667eea;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #333;
            font-weight: 600;
        }

        .feature-card p {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 400;
        }

        .stats {
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
            position: relative;
            color: white;
        }

        .stats h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 60px;
            font-weight: 700;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-top: 50px;
        }

        .stat-item {
            position: relative;
        }

        .stat-item h3 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            margin-bottom: 10px;
            font-weight: 800;
            color: #ffa500;
        }

        .stat-item p {
            font-size: 1.2rem;
            font-weight: 400;
            opacity: 0.9;
        }

        .download-section {
            padding: 100px 0;
            background: #f8f9ff;
            text-align: center;
            position: relative;
        }

        .download-section h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: #333;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .download-section p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .app-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .app-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #000;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .app-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
        }

        footer {
            background: #1a1a2e;
            color: white;
            padding: 60px 0 30px;
            position: relative;
        }

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

        .footer-section h3 {
            margin-bottom: 20px;
            color: #667eea;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .footer-section a, .footer-section p {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: all 0.3s ease;
            font-weight: 400;
        }

        .footer-section a:hover {
            color: #667eea;
            transform: translateX(3px);
        }

        .disclaimer {
            background: #16213e;
            padding: 30px 0;
            text-align: center;
            font-size: 0.9rem;
            color: #999;
            line-height: 1.6;
            border-top: 1px solid #333;
        }

        .disclaimer p {
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .cta-container {
                flex-direction: column;
                align-items: center;
            }
            
            .app-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-card, .stat-item {
            animation: fadeInUp 0.6s ease forwards;
        }

        .feature-card:nth-child(2) { animation-delay: 0.1s; }
        .feature-card:nth-child(3) { animation-delay: 0.2s; }
        .feature-card:nth-child(4) { animation-delay: 0.3s; }
        .feature-card:nth-child(5) { animation-delay: 0.4s; }
        .feature-card:nth-child(6) { animation-delay: 0.5s; }
        .page-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    min-height: auto;
    display: block;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: white;
}

.last-updated {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.content {
    background: white;
    margin: -20px auto 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
}

.policy-content {
    padding: 50px;
    color: #333;
}

.policy-content h2 {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e7ff;
}

.policy-content h2:first-of-type {
    margin-top: 20px;
}

.policy-content h3 {
    color: #444;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.policy-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.policy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.contact-section {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #667eea;
}

.contact-section h3 {
    color: #667eea;
    margin-bottom: 15px;
}

.contact-section p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 25px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 25px 20px;
    }
    
    .contact-section {
        padding: 20px;
    }
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    color: #ccc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.social-links svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    .social-links svg {
        width: 18px;
        height: 18px;
    }
}
