   
   /* .legal-hero
   /*.legal-wrapper
   /* .contact-box
   /* Responsive styles
   /* Responsive styles.legal-card
   
   
   
   /* ==========================================================================
                            Privacy Policy
   ========================================================================== */

        :root {
            --primary-accent: #ff6600;
            --bg-dark: #0a0a0a;
            --card-glass: rgba(255, 255, 255, 0.02);
            --border-glass: rgba(255, 255, 255, 0.05);
            --text-muted: #b0b0b0;
        }

        body {
            background-color: #eeeeee;
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
        }



/* Making the word "Privacy" Black */
.legal-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin: 10px 0 0 0;
    color: #111111 !important; /* This forces 'Privacy' to be black */
}


.legal-sub {
    color: #ff6600;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}



        /* Hero Banner Section */
        .legal-hero {
            background: #d8d8d8 ;
            padding: 140px 0 60px 0;
            text-align: center;
            border-bottom: 1px solid var(--border-glass);
        }
        .legal-hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin: 10px 0 0 0;
        }
        .legal-hero h1 span {
            color: var(--primary-accent);
        }
        .legal-sub {
            color: var(--primary-accent);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Main Content Layout Wrapper */
        .legal-wrapper {
            max-width: 900px;
            margin: 60px auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .legal-card {
            background: var(--card-glass);
            border: 1px solid var(--border-glass);
            border-radius: 16px;
            padding: 45px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .effective-date {
            color: var(--primary-accent);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 30px;
            display: inline-block;
            border-bottom: 1px dashed rgba(255, 102, 0, 0.4);
            padding-bottom: 4px;
        }

        .legal-card h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            color: #3a3a3a;
            margin-top: 40px;
            margin-bottom: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .legal-card h2::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 24px;
            background: var(--primary-accent);
            border-radius: 2px;
        }

        .legal-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            color: var(--primary-accent);
            margin-top: 25px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .legal-card p {
            color: black;
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .legal-card strong {
            color: #000000;
        }

        .legal-card ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 25px;
        }

        .legal-card ul li {
            position: relative;
            padding-left: 25px;
            color: black;
            line-height: 1.7;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .legal-card ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary-accent);
            font-size: 0.85rem;
        }

        .contact-box {
            background: rgba(255, 102, 0, 0.03);
            border: 1px dashed rgba(255, 102, 0, 0.2);
            padding: 25px;
            border-radius: 10px;
            margin-top: 20px;
        }

        .contact-box p {
            margin-bottom: 12px !important;
        }
        .contact-box p i {
            color: var(--primary-accent);
            width: 25px;
        }
        .contact-box a {
            color: #535353;
            text-decoration: none;
            transition: 0.2s ease;
        }
        .contact-box a:hover {
            color: var(--primary-accent);
        }

        hr {
            border: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--border-glass), transparent);
            margin: 40px 0;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .legal-hero h1 { font-size: 2.2rem; }
            .legal-card { padding: 25px; }
            .legal-card h2 { font-size: 1.35rem; }
        }
  

        