.legal-box {
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 4rem;
            backdrop-filter: blur(10px);
            margin-bottom: 2rem;
            transition: all 0.3s;
        }
        .legal-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
            border-color: rgba(0, 243, 255, 0.3);
        }
        .legal-box h2 {
            color: var(--neon-blue);
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            border-bottom: 1px solid var(--border-glass);
            padding-bottom: 0.5rem;
        }
        .legal-box h2:first-child {
            margin-top: 0;
        }
        .legal-box h3 {
            color: #fff;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .legal-box p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .legal-box ul {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
            font-size: 1.1rem;
        }
        .legal-box ul li {
            margin-bottom: 0.5rem;
        }
        .legal-highlight {
            background: rgba(0, 243, 255, 0.05);
            border-left: 4px solid var(--neon-blue);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
            margin-bottom: 2rem;
            color: #e2e8f0;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .legal-box {
                padding: 1.5rem !important;
            }
            .hero-text h1, .section-title {
                font-size: 2.5rem !important;
            }
        }