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

        body {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #2a2a2a;
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .top-social-bar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(75, 140, 165, 0.9);
            backdrop-filter: blur(10px);
            padding: 10px 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1001;
        }

        .nav-center-group {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .nav-center-group .logo {
            margin-right: 15px;
        }

        .nav-center-group .nav-cta {
            margin-left: 15px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .logo-image {
            height: 45px;
            width: auto;
            display: block;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
            transition: all 0.3s ease;
        }

        .logo-image:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.95);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
            display: inline-block;
        }

        .nav-links a:hover {
            color: #ffffff;
            transform: scale(1.1);
        }

        .nav-cta {
            background: rgba(80, 120, 140, 0.8);
            color: #ffffff;
            padding: 10px 24px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
            white-space: nowrap;
        }

        .nav-cta:hover {
            background: rgba(80, 120, 140, 1);
            transform: translateY(-1px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
            z-index: 1002;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #ffffff;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(26, 26, 26, 0.98);
            backdrop-filter: blur(10px);
            padding: 20px;
            z-index: 1000;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu ul li {
            margin-bottom: 15px;
        }

        .mobile-menu ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            display: block;
            padding: 10px;
            transition: all 0.3s ease;
        }

        .content-section {
            padding: 140px 50px 80px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 60px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .privacy-content {
            background: #1a1a1a;
            border: 2px solid #6b6b6b;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 30px;
        }

        .privacy-content h2 {
            color: rgba(126, 211, 33, 0.9);
            font-size: 28px;
            margin-top: 40px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .privacy-content h2:first-child {
            margin-top: 0;
        }

        .privacy-content h3 {
            color: #ffffff;
            font-size: 22px;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .privacy-content p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .privacy-content ul {
            margin: 15px 0;
            padding-left: 30px;
        }

        .privacy-content ul li {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 10px;
            line-height: 1.8;
        }

        .privacy-content strong {
            color: #ffffff;
        }

        .privacy-content a {
            color: rgba(126, 211, 33, 0.9);
            text-decoration: underline;
        }

        .last-updated {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            margin-top: 40px;
            font-style: italic;
        }

        footer {
            background: #1a1a1a;
            border-top: 1px solid rgba(126, 211, 33, 0.2);
            padding: 70px 50px 40px;
            width: 100%;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-logo-image {
            height: 60px;
            width: auto;
            display: block;
            transition: all 0.3s ease;
        }

        .footer-logo-image:hover {
            transform: scale(1.05);
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: #2a2a2a;
            border: 1px solid rgba(126, 211, 33, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #ffffff;
        }

        .social-link:hover {
            background: rgba(126, 211, 33, 0.15);
            border-color: rgba(126, 211, 33, 0.3);
            transform: translateY(-2px);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(126, 211, 33, 0.15);
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
        }

        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .nav-center-group .nav-cta {
                display: none;
            }

            .hamburger {
                display: flex;
                position: absolute;
                right: 20px;
            }

            .top-social-bar {
                justify-content: flex-start;
                padding: 10px 20px;
            }

            .content-section {
                padding: 100px 20px 60px;
            }

            .privacy-content {
                padding: 25px;
            }

            .section-title {
                font-size: 32px;
            }
        }
