body {
            color: #f5f5f5;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            position: relative;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .hero-image {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            margin: 0;
            padding: 0;
        }

        .top-bar {
            position: relative;
            z-index: 10;
        }

        .top-bar-logo {
            font-weight: 700;
        }

        .legal-container {
            max-width: 900px;
            margin: 80px auto 40px auto;
            background: #101b2a;
            border-radius: 8px;
            padding: 32px 28px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 10;
        }

        .legal-container h1 {
            font-size: 2rem;
            margin-bottom: 0.25rem;
        }

        .legal-container .effective-date {
            font-size: 0.9rem;
            color: #9fb2d1;
            margin-bottom: 1.5rem;
        }

        .legal-container h2 {
            font-size: 1.25rem;
            margin-top: 1.75rem;
            margin-bottom: 0.5rem;
            color: #e3ecff;
        }

        .legal-container p {
            line-height: 1.6;
            margin-bottom: 0.9rem;
        }

        .legal-container ul {
            margin-left: 1.2rem;
            margin-bottom: 1rem;
        }

        .legal-container li {
            margin-bottom: 0.35rem;
        }

        a {
            color: #6fb5ff;
        }

        a:hover {
            text-decoration: underline;
        }