:root {
        --primary-color: #6366f1;
        --primary-light: #818cf8;
        --primary-dark: #4f46e5;
        --secondary-color: #1e293b;
        --danger-color: #ef4444;
        --warning-color: #f59e0b;
        --success-color: #10b981;
        --info-color: #3b82f6;
        --bg-light: #f8fafc;
        --bg-dark: #0f172a;
        --bg-grey: #0f172a;
        --text-dark: #1e293b;
        --text-light: #64748b;
        --border-radius: 12px;
        --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        --transition: all 0.3s ease;
    }

    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8fafc;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
       /* 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);
            text-decoration: none;
        }

        .nav-link:hover, .nav-link.active {
            background: rgba(138, 66, 255, 0.1);
            color: var(--primary-color);
            text-decoration: none;
        }

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

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

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28138, 66, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .last-updated {
            background-color: rgba(255, 255, 255, 0.15);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
        }
        
        /* Navigation */
        nav {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-links {

            display: flex;
            list-style: none;
            padding-top: 120px;
            margin: 0;
            overflow-x: auto;
        }
        
        .nav-links li {
            flex-shrink: 0;
        }
        
        .nav-links a {
            display: inline-block;
            padding: 1rem 1.5rem;
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #3b82f6;
            background-color: #f1f5f9;
        }
        
        .nav-links a.active {
            color: #3b82f6;
            border-bottom-color: #3b82f6;
            font-weight: 600;
            text-decoration: none;
        }
        
        /* Main Content */
        main {
            padding: 3rem 0;
            
        }
        
        .policy-content {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
            padding: 3rem;
            margin-bottom: 2rem;
            
        }
        
        section {
            margin-bottom: 3rem;
            scroll-margin-top: 80px;
        }
        
        h2 {
            color: #1e3a8a;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        
        h3 {
            color: #374151;
            margin: 1.5rem 0 0.8rem 0;
        }
        
        p {
            margin-bottom: 1.2rem;
        }
        
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0 2rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .cookie-table th {
            background-color: #1e3a8a;
            color: white;
            text-align: left;
            padding: 1rem;
            font-weight: 600;
        }
        
        .cookie-table td {
            padding: 1rem;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .cookie-table tr:nth-child(even) {
            background-color: #f9fafb;
        }
        
        .cookie-table tr:hover {
            background-color: #f0f9ff;
        }
        
        .note {
            background-color: #fef3c7;
            border-left: 4px solid #f59e0b;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        
        .cookie-types {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .cookie-type-card {
            flex: 1;
            min-width: 250px;
            background-color: #f8fafc;
            border-radius: 8px;
            padding: 1.5rem;
            border-top: 4px solid #3b82f6;
        }
        
        .cookie-type-card h4 {
            color: #1e3a8a;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .cookie-type-card h4 i {
            color: #3b82f6;
        }
        
        /* 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: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.4rem;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 150px 0 80px;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .dashboard-mockup {
                transform: perspective(1000px) rotateY(0deg);
                margin-top: 40px;
            }
            
            .testimonial-slide {
                padding: 40px 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            
            
            .feature-card, .platform-card, .pricing-card {
                padding: 30px 20px;
            }
        }
         @media (max-width: 992px) {
            .main-footer {
                padding: 50px 0 25px;
            }
            
            .col-lg-4, .col-lg-3, .col-lg-2 {
                flex: 0 0 50%;
                max-width: 50%;
            }
            
            .mb-5 {
                margin-bottom: 2.5rem !important;
            }
        }

        @media (max-width: 768px) {
            .main-footer {
                padding: 40px 0 20px;
            }
            
            .col-lg-4, .col-lg-3, .col-lg-2, .col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .footer-heading {
                font-size: 16px;
            }
            
            .footer-about {
                font-size: 13px;
            }
            
            .footer-links a,
            .footer-contact span {
                font-size: 13px;
            }
            
            .copyright p {
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .main-footer {
                padding: 30px 0 15px;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-logo {
                justify-content: center;
            }
            
            .footer-heading {
                text-align: center;
            }
            
            .footer-heading::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-links {
                text-align: center;
            }
            
            .footer-contact li {
                justify-content: center;
                text-align: center;
            }
        }

        .consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #1e3a8a;
            color: white;
            padding: 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            z-index: 1000;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .consent-buttons {
            display: flex;
            gap: 1rem;
        }
        
        
        
        .btn-primary {
            background-color: #10b981;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #059669;
        }
        
        .btn-secondary {
            background-color:  rgba(22, 1, 1, 0.76);
            color: white;
            border: 1px solid #60a5fa;
        }
        
        .btn-secondary:hover {
            background-color: rgba(22, 1, 1, 0.1);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .policy-content {
                padding: 2rem 1.5rem;
            }
            
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .nav-links {
                justify-content: flex-start;
            }
            
            .cookie-type-card {
                min-width: 100%;
            }
            
            .consent-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .consent-buttons {
                width: 100%;
                justify-content: center;
            }
        }

