 
        :root {
            --black1: #0B0B0B;
            --black2: #1A1A1A;
            --black3: #2A2A2A;
            --cream: #F8F5ED;
            --gold1: #D4AF37;
            --gold2: #B8941F;
            --gold3: #9A7B17;
            --goldLight: rgba(212, 175, 55, 0.1);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, var(--black1) 0%, var(--black2) 50%, var(--black1) 100%);
            color: var(--cream);
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Header Styles */
        .navbar {
            background-color: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--gold1) !important;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .navbar-nav .nav-link {
            color: var(--cream) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--gold1) !important;
        }

        /* Hero Section */
        .legal-hero {
            padding: 6rem 0 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .legal-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .legal-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--gold1);
        }

        .legal-hero p {
            font-size: 1.2rem;
            color: rgba(248, 245, 237, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Content Section */
        .legal-content {
            padding: 3rem 0 5rem;
        }

        .legal-card {
            background: linear-gradient(145deg, var(--black2), var(--black3));
            border-radius: 12px;
            padding: 3rem;
            border: 1px solid rgba(212, 175, 55, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .last-updated {
            text-align: center;
            color: var(--gold1);
            font-weight: 600;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .section-title {
            color: var(--gold1);
            font-weight: 700;
            margin: 2.5rem 0 1.5rem;
            font-size: 1.5rem;
            position: relative;
            padding-left: 1rem;
            border-left: 3px solid var(--gold1);
        }

        .section-title:first-child {
            margin-top: 0;
        }

        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold1), transparent);
            margin: 2rem 0;
            opacity: 0.3;
        }

        ul.legal-list {
            list-style: none;
            padding-left: 0;
        }

        ul.legal-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        ul.legal-list li:before {
            content: '•';
            color: var(--gold1);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .highlight-box {
            background: rgba(212, 175, 55, 0.05);
            border-left: 3px solid var(--gold1);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }

        /* Footer */
        .footer {
            background-color: var(--black1);
            padding: 3rem 0 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold1);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer p {
            color: rgba(248, 245, 237, 0.7);
            margin-bottom: 1rem;
        }

        .footer h5 {
            color: var(--cream);
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--gold1);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(248, 245, 237, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold1);
        }

        .footer-bottom {
            border-top: 1px solid rgba(248, 245, 237, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(248, 245, 237, 0.5);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .legal-hero h1 {
                font-size: 2.2rem;
            }
            
            .legal-card {
                padding: 2rem 1.5rem;
            }
            
            .legal-hero {
                padding: 5rem 0 2rem;
            }
        }