/* --- All CSS from your Privacy Policy remains unchanged --- */
    :root {
        --primary-color: #2d4ef5;
        --primary-light: #4d6aff;
        --primary-dark: #1a3bd4;
        --secondary-color: #2b2b36;
        --accent-color: #00d4aa;
        --accent-light: #4dffd9;
        --danger-color: #ff4757;
        --warning-color: #ffa502;
        --success-color: #2ed573;
        --info-color: #1e90ff;
        --bg-light: #f8f9fa;
        --bg-dark: #1a1a24;
        --text-dark: #2d3748;
        --text-light: #718096;
        --text-white: #ffffff;
        --border-radius: 12px;
        --border-radius-sm: 8px;
        --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        --box-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
        --transition: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        overflow-x: hidden;
        background-color: #f9fafb;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        line-height: 1.3;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }

    a:hover {
        color: var(--primary-color);
    }

    

    .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        color: white;
        border: none;
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(45, 78, 245, 0.2);
    }

    /* Header Styles */
    .main-header {
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        transition: var(--transition);
    }

    .main-header.scrolled {
        padding: 10px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar {
        padding: 20px 0;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-color);
    }

    .navbar-brand .logo-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        color: white;
    }

    .nav-link {
        font-weight: 500;
        padding: 10px 20px !important;
        margin: 0 5px;
        border-radius: var(--border-radius-sm);
        transition: var(--transition);
    }

    .nav-link:hover, .nav-link.active {
        background: rgba(45, 78, 245, 0.1);
        color: var(--primary-color);
    }

    .navbar-toggler {
        border: none;
        padding: 8px 10px;
        border-radius: var(--border-radius-sm);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Privacy Hero (reused for Disclaimer) */
    .privacy-hero {
        background: linear-gradient(135deg, #0c2461 0%, #2d4ef5 100%);
        color: white;
        padding: 180px 0 80px;
        position: relative;
        overflow: hidden;
    }

    .privacy-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" opacity="0.05"><path fill="%23ffffff" d="M0,0V600H1200V0ZM600,300A300,300,0,1,1,300,600,300,300,0,0,1,600,300Z"/></svg>');
        background-size: cover;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        opacity: 0.9;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .compliance-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .compliance-badge {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        padding: 12px 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        font-size: 0.9rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .last-updated {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        padding: 12px 30px;
        display: inline-block;
        margin-top: 30px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* Privacy Container */
    .privacy-container {
        background: white;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        margin: -60px auto 100px;
        position: relative;
        z-index: 3;
        overflow: hidden;
    }

    /* Sidebar Navigation */
    .privacy-sidebar {
        background: #f8f9fa;
        border-right: 1px solid #eaeaea;
        padding: 40px 30px;
        height: 100%;
        position: sticky;
        top: 120px;
    }

    @media (max-width: 992px) {
        .privacy-sidebar {
            position: static;
            border-right: none;
            border-bottom: 1px solid #eaeaea;
            padding: 30px;
        }
    }

    .sidebar-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 25px;
        color: var(--primary-color);
        display: flex;
        align-items: center;
    }

    .sidebar-title i {
        margin-right: 10px;
    }

    .privacy-nav {
        list-style: none;
        padding: 0;
    }

    .privacy-nav li {
        margin-bottom: 8px;
    }

    .privacy-nav a {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        color: var(--text-dark);
        border-radius: var(--border-radius-sm);
        transition: var(--transition);
    }

    .privacy-nav a:hover {
        background: rgba(45, 78, 245, 0.08);
        color: var(--primary-color);
    }

    .privacy-nav a.active {
        background: rgba(45, 78, 245, 0.1);
        color: var(--primary-color);
        font-weight: 600;
    }

    .privacy-nav .section-number {
        display: inline-block;
        width: 24px;
        height: 24px;
        background: rgba(45, 78, 245, 0.1);
        color: var(--primary-color);
        border-radius: 50%;
        text-align: center;
        line-height: 24px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-right: 10px;
    }

    .privacy-nav a.active .section-number {
        background: var(--primary-color);
        color: white;
    }

    .key-privacy-points {
        background: #f0f7ff;
        border-radius: var(--border-radius-sm);
        padding: 25px;
        margin-top: 30px;
        border-left: 4px solid var(--primary-color);
    }

    .key-privacy-points h5 {
        color: var(--primary-color);
        font-size: 1rem;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .key-privacy-points h5 i {
        margin-right: 8px;
    }

    .key-privacy-points ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .key-privacy-points li {
        padding: 8px 0;
        display: flex;
        align-items: flex-start;
    }

    .key-privacy-points li i {
        color: var(--success-color);
        margin-right: 10px;
        margin-top: 5px;
        font-size: 0.8rem;
    }

    /* Privacy Content */
    .privacy-content {
        padding: 60px;
    }

    @media (max-width: 768px) {
        .privacy-content {
            padding: 40px 25px;
        }
    }

    .privacy-section {
        margin-bottom: 60px;
        scroll-margin-top: 140px;
    }

    .privacy-section:last-child {
        margin-bottom: 0;
    }

    .section-header {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(45, 78, 245, 0.1);
    }

    .section-number-large {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        color: white;
        border-radius: 50%;
        font-size: 1.5rem;
        font-weight: 700;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .section-title-large {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin: 0;
    }

    .section-content {
        line-height: 1.7;
    }

    .section-content p {
        margin-bottom: 20px;
    }

    .section-content ul, .section-content ol {
        margin-bottom: 20px;
        padding-left: 25px;
    }

    .section-content li {
        margin-bottom: 10px;
    }

    .privacy-highlight {
        background: #f0f7ff;
        border-left: 4px solid var(--primary-color);
        padding: 25px;
        border-radius: var(--border-radius-sm);
        margin: 25px 0;
    }

    .privacy-highlight.warning {
        background: #fff8e6;
        border-left-color: var(--warning-color);
    }

    .privacy-highlight.danger {
        background: #fff0f0;
        border-left-color: var(--danger-color);
    }

    .privacy-highlight.success {
        background: #f0fff8;
        border-left-color: var(--success-color);
    }

    .privacy-highlight.info {
        background: #f0f9ff;
        border-left-color: var(--info-color);
    }

    .privacy-highlight h5 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .privacy-highlight h5 i {
        margin-right: 10px;
    }

    .privacy-highlight.warning h5 {
        color: var(--warning-color);
    }

    .privacy-highlight.danger h5 {
        color: var(--danger-color);
    }

    .privacy-highlight.success h5 {
        color: var(--success-color);
    }

    .privacy-highlight.info h5 {
        color: var(--info-color);
    }

    .privacy-highlight p {
        margin-bottom: 0;
    }

    /* Legal Entity Box */
    .legal-entity-box {
        background: #f0f7ff;
        border-radius: var(--border-radius-sm);
        padding: 25px;
        margin: 30px 0;
        border: 1px solid rgba(45, 78, 245, 0.1);
    }

    .legal-entity-box h5 {
        color: var(--primary-color);
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    .legal-entity-box p {
        margin-bottom: 8px;
        display: flex;
    }

    .legal-entity-box strong {
        min-width: 200px;
        display: inline-block;
    }

    /* Acknowledgment Section */
    .acknowledgment-section {
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        border-radius: var(--border-radius);
        padding: 50px;
        margin-top: 60px;
        border: 2px solid rgba(45, 78, 245, 0.1);
        text-align: center;
    }

    .acknowledgment-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        color: white;
        font-size: 36px;
    }

    .acknowledgment-section h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: var(--secondary-color);
    }

    .acknowledgment-section p {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 800px;
        margin: 0 auto 30px;
    }

    /* Back to Top */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: var(--primary-dark);
        transform: translateY(-5px);
    }

    /* Footer */
    .main-footer {
        background: var(--bg-dark);
        color: white;
        padding: 80px 0 30px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        font-size: 1.8rem;
        font-weight: 800;
        color: white;
        margin-bottom: 20px;
    }

    .footer-logo .logo-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        color: white;
    }

    .footer-about {
        opacity: 0.8;
        margin-bottom: 25px;
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .social-link:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
    }

    .footer-heading {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--accent-color);
        border-radius: 3px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        transition: var(--transition);
    }

    .footer-links a:hover {
        color: var(--accent-color);
        padding-left: 5px;
    }

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.8);
    }

    .footer-contact li i {
        margin-right: 10px;
        color: var(--accent-color);
        margin-top: 5px;
    }

    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        margin-top: 50px;
        text-align: center;
        opacity: 0.7;
        font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .hero-title {
            font-size: 3rem;
        }
    }

    @media (max-width: 992px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .privacy-container {
            margin-top: -40px;
        }

        .compliance-badges {
            gap: 15px;
        }

        .compliance-badge {
            padding: 10px 20px;
            font-size: 0.85rem;
        }
    }

    @media (max-width: 768px) {
        .privacy-hero {
            padding: 150px 0 60px;
        }

        .hero-title {
            font-size: 2.2rem;
        }

        .section-title-large {
            font-size: 1.5rem;
        }

        .acknowledgment-section {
            padding: 40px 25px;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 1.9rem;
        }

        .section-number-large {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }

        .legal-entity-box p {
            flex-direction: column;
        }

        .legal-entity-box strong {
            min-width: auto;
            margin-bottom: 5px;
        }

        .compliance-badges {
            flex-direction: column;
            align-items: center;
        }

        .compliance-badge {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }
    /* Footer */
        .main-footer {
            background: var(--bg-dark);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

        .footer-logo .logo-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
        }

        .footer-about {
            opacity: 0.8;
            margin-bottom: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-heading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 3px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-contact li i {
            margin-right: 10px;
            color: var(--accent-color);
            margin-top: 5px;
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
            opacity: 0.7;
            font-size: 0.9rem;
        }

