
        :root {
            --primary: #050505;
            --accent: #2563EB;
            --text-main: #0a0a0a;
            --text-secondary: #525252;
            --bg-body: #ffffff;
            --bg-alt: #fafafa;
            --border-light: #e5e5e5;
            --radius-lg: 24px;
            --radius-md: 12px;
            --container-width: 900px;
            --header-height: 70px;
            --ease-tech: cubic-bezier(0.16, 1, 0.3, 1);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'Fira Code', monospace;
        }

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

        body {
            font-family: var(--font-body);
            color: var(--text-main);
            background-color: var(--bg-body);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text-main);
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 9999;
            border-bottom: 1px solid var(--border-light);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo {
            font-weight: 700;
            font-size: 20px;
            color: var(--text-main);
            text-decoration: none;
            letter-spacing: -0.03em;
        }

        .nav-menu {
            display: flex;
            gap: 32px;
        }

        .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
            opacity: 0.6;
            text-decoration: none;
            transition: all 0.2s;
        }

        .nav-link:hover {
            opacity: 1;
        }

        /* Mobile Menu Styles - Premium */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
            width: 30px;
            height: 30px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 10001;
            padding: 0;
        }

        .mobile-menu-btn span {
            width: 100%;
            height: 2px;
            background-color: var(--text-main);
            transition: all 0.3s var(--ease-tech);
            border-radius: 2px;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s var(--ease-tech);
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-link {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-main);
            margin: 12px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .mobile-nav-link:hover {
            color: var(--accent);
        }

        /* Button Animation State */
        .mobile-menu-btn.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

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

            .mobile-menu-btn {
                display: flex;
            }

            .header-inner .btn-primary {
                display: none;
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 99px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s var(--ease-tech);
            text-decoration: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        /* Hero */
        .hero-legal {
            padding-top: 200px;
            padding-bottom: 120px;
            background: #000;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            z-index: 1;
            will-change: transform;
        }

        .hero-bg-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
            filter: saturate(0);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 0%, #000 90%);
            z-index: 2;
        }

        .hero-legal .container {
            position: relative;
            z-index: 3;
        }

        .hero-legal h1 {
            font-size: 72px;
            margin-bottom: 16px;
            color: white;
        }

        .hero-legal p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Content */
        .legal-content {
            padding: 80px 0 120px;
        }

        .info-box {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 48px;
            margin-bottom: 60px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s var(--ease-tech);
        }

        .info-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .info-box h2 {
            font-size: 28px;
            margin-bottom: 28px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .section-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--accent);
            color: white;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            font-family: var(--font-mono);
        }

        .info-box p {
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .info-box strong {
            color: var(--text-main);
            font-weight: 600;
        }

        .info-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .info-list li {
            padding: 12px 0;
            padding-left: 24px;
            position: relative;
            color: var(--text-secondary);
        }

        .info-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20px;
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
        }

        .contact-info {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 32px;
            border-radius: var(--radius-md);
            margin: 24px 0;
        }

        .contact-info p {
            margin-bottom: 8px;
            font-size: 15px;
        }

        .highlight-box {
            background: rgba(37, 99, 235, 0.05);
            border-left: 4px solid var(--accent);
            padding: 24px;
            border-radius: 8px;
            margin: 24px 0;
        }

        .highlight-box p {
            margin-bottom: 0;
            color: var(--text-main);
        }

        /* Footer CTA */
        .footer-cta {
            background: #000;
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .footer-cta h2 {
            color: white;
            font-size: 36px;
            margin-bottom: 16px;
        }

        .footer-cta p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 32px;
        }

        a {
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        /* Visual Dividers */
        .visual-divider {
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
            margin: 80px 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .divider-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .divider-content {
            text-align: center;
            color: white;
            max-width: 600px;
        }

        .divider-content h3 {
            color: white;
            font-size: 32px;
            margin-bottom: 12px;
        }

        .divider-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
        }

        /* Split Section */
        .split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin: 80px 0;
        }

        .split-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 400px;
        }

        .split-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Animations */
        .reveal-text {
            opacity: 0;
            transform: translateY(30px);
        }

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

            .hero-legal h1 {
                font-size: 40px;
            }

            .info-box {
                padding: 24px;
            }

            .split-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .split-image {
                height: 300px;
            }

            .visual-divider {
                height: 200px;
                margin: 40px 0;
            }
        }