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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0f172a, #1e293b, #334155, #475569, #64748b);
            min-height: 100vh;
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
        }

        /* Enhanced Background with Parallax Effect */
        .nature-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(135deg, #0f172a, #1e293b, #334155, #475569, #64748b);
        }

        .nature-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 60% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
            animation: streamFloat 12s ease-in-out infinite;
        }

        .nature-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(2px 2px at 20px 30px, rgba(59, 130, 246, 0.4), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(147, 51, 234, 0.3), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(6, 182, 212, 0.5), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(99, 102, 241, 0.4), transparent);
            background-repeat: repeat;
            background-size: 150px 100px;
            animation: floatingParticles 20s linear infinite;
        }

        @keyframes streamFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
            25% { transform: translateY(-10px) rotate(0.3deg); opacity: 0.8; }
            50% { transform: translateY(-20px) rotate(0.5deg); opacity: 0.9; }
            75% { transform: translateY(-15px) rotate(0.2deg); opacity: 0.7; }
        }

        @keyframes floatingParticles {
            0% { transform: translateY(0px) translateX(0px); }
            100% { transform: translateY(-100vh) translateX(50px); }
        }

        /* Navigation Bar */
        .nav-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(59, 130, 246, 0.2);
            padding: 1rem 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .nav-logo-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.8rem;
            font-size: 1.2rem;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 0.625rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .nav-link:hover {
            color: #ffffff;
            background: rgba(59, 130, 246, 0.2);
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-0.125rem);
        }

        /* Page Layout */
        .page-layout {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            min-height: 100vh;
            padding-top: 6rem;
        }

        .main-content {
            min-width: 0;
        }

        /* Hero Section */
        .hero-section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 2.1875rem;
            padding: 4rem;
            margin-bottom: 3rem;
            text-align: center;
            box-shadow: 0 1.875rem 3.75rem rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0.125rem;
            background: linear-gradient(90deg,
                transparent,
                rgba(59, 130, 246, 0.8),
                rgba(147, 51, 234, 0.6),
                rgba(59, 130, 246, 0.8),
                transparent
            );
            animation: borderGlow 3s ease-in-out infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
            50% { opacity: 1; transform: scaleX(1); }
        }

        .hero-logo {
            width: 5rem;
            height: 5rem;
            background: linear-gradient(135deg, #3b82f6 0%, #9333ea 50%, #06b6d4 100%);
            border-radius: 1.375rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin: 0 auto 2rem;
            box-shadow: 0 0.9375rem 2.1875rem rgba(59, 130, 246, 0.4);
            animation: logoFloat 4s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-0.5rem) rotate(1deg); }
        }

        .hero-title {
            color: #ffffff;
            font-weight: 800;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.3rem;
            margin-bottom: 2rem;
            font-weight: 400;
            text-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.3);
        }

        /* Content Sections */
        .content-section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 2.1875rem;
            padding: 4rem;
            margin-bottom: 3rem;
            box-shadow: 0 1.875rem 3.75rem rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0.125rem;
            background: linear-gradient(90deg,
                transparent,
                rgba(59, 130, 246, 0.8),
                rgba(147, 51, 234, 0.6),
                rgba(59, 130, 246, 0.8),
                transparent
            );
            animation: borderGlow 3s ease-in-out infinite;
        }

        .section-title {
            color: #3b82f6;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
        }

        .section-title::before {
            content: '';
            width: 0.3125rem;
            height: 2rem;
            background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
            border-radius: 0.1875rem;
            margin-right: 1.2rem;
            box-shadow: 0 0.125rem 0.5rem rgba(59, 130, 246, 0.4);
        }

        .content-text {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.1rem;
            line-height: 1.8;
            text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
        }

        .content-text p {
            margin-bottom: 1.5rem;
        }

        .content-text p:last-child {
            margin-bottom: 0;
        }

        .content-text strong {
            color: #3b82f6;
            font-weight: 600;
        }

        .content-text ul {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }

        .content-text li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }

        .content-text li::before {
            content: '🔒';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1rem;
            filter: drop-shadow(0 0.125rem 0.25rem rgba(0, 0, 0, 0.3));
        }

        .content-text h3 {
            color: #3b82f6;
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            font-weight: 600;
        }

        .highlight-box {
            background: rgba(59, 130, 246, 0.15);
            border-left: 0.3125rem solid #3b82f6;
            padding: 2rem;
            border-radius: 0 0.9375rem 0.9375rem 0;
            margin: 2rem 0;
            box-shadow: 0 0.3125rem 0.9375rem rgba(59, 130, 246, 0.2);
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.05), transparent);
            animation: privacyGlow 3s ease-in-out infinite;
        }

        @keyframes privacyGlow {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .highlight-box p {
            margin: 0;
            color: rgba(255, 255, 255, 0.98);
            font-weight: 600;
            font-size: 1.1rem;
            text-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }

        .last-updated {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 0.9375rem;
            padding: 1rem 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
            font-style: italic;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-info {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 1.25rem;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
        }

        .contact-info a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-info a:hover {
            color: #60a5fa;
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-content {
                padding: 0 1rem;
            }

            .nav-logo {
                font-size: 1rem;
            }

            .nav-logo-icon {
                width: 2.1875rem;
                height: 2.1875rem;
                font-size: 1rem;
            }

            .page-layout {
                padding: 1rem;
                padding-top: 5rem;
            }

            .hero-section, .content-section {
                padding: 2rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .content-text {
                font-size: 1rem;
            }
        }

        /* Animation Classes */
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(1.875rem);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }