
        :root {
            --primary-color: #f7d51d;
            --secondary-color: #2c2c2c;
            --text-color: #e0e0e0;
            --background-color: #1a1a1a;
            --card-background: #222;
            --dark-gray: #333;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
        }

        h1, h2, h3 {
            font-weight: 700;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            color: #fff;
        }

        h3 {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 1rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, background-color 0.3s ease;
            text-align: center;
        }

        .btn:hover {
            transform: translateY(-5px);
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        /* Header */
        header {
            background-color: var(--secondary-color);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary-color);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            color: #fff;
            font-weight: 600;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu i {
            font-size: 1.2rem;
            color: var(--primary-color);
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                right: 0;
                top: 70px;
                background-color: var(--secondary-color);
                height: 100vh;
                width: 60%;
                flex-direction: column;
                transform: translateX(100%);
                transition: transform 0.3s ease-in;
                align-items: center;
                padding-top: 2rem;
                z-index: 999;
            }

            .nav-menu.active {
                transform: translateX(0);
            }

            .nav-menu li {
                margin: 1.5rem 0;
            }

            .burger-menu {
                display: block;
            }
        }
        
        /* Hero Section */
        .policy-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
            color: #fff;
            text-align: center;
            padding: 6rem 0;
        }

        .policy-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .policy-hero i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .policy-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .policy-hero h1 {
                font-size: 2rem;
            }
        }
        
        /* Content Section */
        .section {
            padding: 4rem 0;
        }

        .policy-content {
            background-color: var(--card-background);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--box-shadow);
        }

        .policy-content p {
            margin-bottom: 1rem;
            color: #ccc;
        }

        .policy-content ul {
            list-style: none;
            margin-bottom: 1rem;
            padding-left: 1rem;
        }

        .policy-content ul li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
            color: #ccc;
        }

        .policy-content ul li::before {
            content: '\f054'; /* Font Awesome chevron-right */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }

        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: #ccc;
            padding: 2rem 0;
            text-align: center;
        }

        footer .container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        footer .logo {
            margin-bottom: 1rem;
        }

        footer .footer-links a {
            color: #ccc;
            margin: 0 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        footer .footer-links i {
            font-size: 1rem;
            color: var(--primary-color);
        }

        footer .disclaimer {
            font-size: 0.9rem;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-up.visible {
            animation: fadeInUp 0.8s ease-out forwards;
        }

    
        /* Hero Section */
        .terms-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
            color: #fff;
            text-align: center;
            padding: 6rem 0;
        }

        .terms-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .terms-hero i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .terms-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .terms-hero h1 {
                font-size: 2rem;
            }
        }
        
        /* Content Section */
        .section {
            padding: 4rem 0;
        }

        .terms-content {
            background-color: var(--card-background);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--box-shadow);
        }

        .terms-content p {
            margin-bottom: 1rem;
            color: #ccc;
        }

        .terms-content ul {
            list-style: none;
            margin-bottom: 1rem;
            padding-left: 1rem;
        }

        .terms-content ul li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
            color: #ccc;
        }

        .terms-content ul li::before {
            content: '\f054'; /* Font Awesome chevron-right */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }

      

   
 
        /* Thank You Section */
        .thanks-section {
            padding: 6rem 0;
            text-align: center;
        }

        .thanks-content {
            background-color: var(--card-background);
            border-radius: var(--border-radius);
            padding: 3rem;
            box-shadow: var(--box-shadow);
            max-width: 600px;
            margin: 0 auto;
        }

        .thanks-content i {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .thanks-content p {
            font-size: 1.2rem;
            color: #ccc;
            margin-bottom: 2rem;
        }

        .thanks-content .buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        @media (max-width: 768px) {
            .thanks-content {
                padding: 2rem;
            }
            .thanks-content h2 {
                font-size: 2rem;
            }
            .thanks-content .buttons {
                flex-direction: column;
            }
        }

      
     
  