        /* Global Styles */
        :root {
            --primary: #F5C518;
            --primary-dark: #D9AE17;
            --secondary: #333333;
            --text-primary: #333333;
            --text-secondary: #555555;
            --background: #FFFDF7;
            --surface: #FFF9E6;
            --border: #F0E6C0;
            --gradient-start: #F5C518;
            --gradient-end: #FFD700;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--background);
            overflow-x: hidden;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        nav.scrolled {
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            transition: all 0.3s ease;
            border-radius: 2px; /* Added for better look during animation */
        }

        /* Active state for mobile menu icon (transform to X) */
        .mobile-menu.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .mobile-menu.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Hero Section */
        .hero {
            padding: 150px 0 100px;
            background: linear-gradient(135deg, #FFFDF7 0%, #FFF9E6 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(245, 197, 24, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-end) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-text p {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .btn {
            padding: 16px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-end) 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(230, 0, 35, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(230, 0, 35, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            animation: heroFloat 6s ease-in-out infinite;
        }

        @keyframes heroFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .browser-mockup {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-hover);
            overflow: hidden;
            transform: perspective(1000px) rotateY(-10deg);
        }

        .browser-header {
            background: #F5F5F5;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .browser-dots {
            display: flex;
            gap: 8px;
        }

        .browser-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #DDD;
        }

        .browser-dot:nth-child(1) { background: #FF5F57; }
        .browser-dot:nth-child(2) { background: #FFBD2E; }
        .browser-dot:nth-child(3) { background: #28CA42; }

        .browser-content {
            padding: 20px;
            background: linear-gradient(to bottom, #FFF 0%, #F9F9F9 100%);
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .extension-preview {
            width: 90%;
            max-width: 300px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            padding: 20px;
            animation: extensionPop 1s ease-out;
        }

        @keyframes extensionPop {
            0% { transform: scale(0.8); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--background);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--gradient-end) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-end) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
            color: white;
        }

        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Demo Section */
        .demo {
            padding: 100px 0;
            background: linear-gradient(135deg, #FFF5F5 0%, #FFE5E5 100%);
            position: relative;
        }

        .demo-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .demo-steps {
            counter-reset: step;
        }

        .demo-step {
            position: relative;
            padding-left: 60px;
            margin-bottom: 40px;
            counter-increment: step;
        }

        .demo-step::before {
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0;
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }

        .demo-step h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .demo-step p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .demo-slideshow {
            position: relative;
            width: 100%;
            max-width: 600px; /* Adjust as needed, or use 100% */
            height: 400px; /* Adjust as needed */
            overflow: hidden;
            border-radius: 20px;
            box-shadow: var(--shadow-hover);
            background: #f0f0f0; /* Fallback for when images are loading */
            margin: 0 auto; /* Centers the slideshow if max-width is less than container */
        }

        .demo-slideshow .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures images cover the slideshow area */
            opacity: 0;
            transition: opacity 1s ease-in-out; /* Fade transition for slides */
        }

        .demo-slideshow .slide.active {
            opacity: 1; /* Makes the current slide visible */
        }

        /* Statistics */
        .stats {
            padding: 80px 0;
            background: var(--text-primary);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #FFF 0%, #CCC 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-item p {
            font-size: 18px;
            opacity: 0.8;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: var(--background); /* Or var(--surface) */
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column for Q&A items */
            gap: 25px; /* Spacing between FAQ items */
        }
        
        @media (min-width: 768px) {
            .faq-grid {
                 grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); /* 2 columns on larger screens */
                 gap: 30px;
            }
        }

        .faq-item {
            background: white;
            padding: 25px 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--border);
        }

        .faq-question {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .faq-answer {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-answer a {
            color: var(--primary);
            text-decoration: none;
        }

        .faq-answer a:hover {
            text-decoration: underline;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: var(--surface);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            position: relative;
        }

        .testimonial-quote {
            font-size: 60px;
            color: var(--primary);
            line-height: 1;
            margin-bottom: -20px;
            opacity: 0.3;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-end) 100%);
        }

        .author-info h4 {
            font-size: 16px;
            margin-bottom: 2px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-end) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite reverse;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            padding: 18px 40px;
            font-size: 18px;
        }

        .btn-white:hover {
            background: #F5F5F5;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: var(--text-primary);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            margin-bottom: 20px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .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: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Policy Pages */
        .policy-container {
            max-width: 800px;
            margin: 100px auto;
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            display: none;
        }

        .policy-container.active {
            display: block;
        }

        .policy-container h1 {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .policy-container h2 {
            font-size: 24px;
            margin: 30px 0 15px;
            color: var(--text-primary);
        }

        .policy-container p {
            margin-bottom: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .policy-container ul {
            margin: 15px 0 15px 30px;
            color: var(--text-secondary);
        }

        .policy-container li {
            margin-bottom: 10px;
            line-height: 1.8;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .back-button:hover {
            transform: translateX(-5px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none; /* Initially hidden */
                flex-direction: column;
                position: absolute;
                top: 70px; /* Adjust based on navbar height */
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(5px);
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                border-top: 1px solid var(--border);
                gap: 0; /* Reset gap for vertical layout */
            }

            .nav-links.active {
                display: flex; /* Show when active */
            }

            .nav-links a {
                padding: 15px 20px; /* Add padding for touch targets */
                text-align: center;
                width: 100%;
            }

            .nav-links a::after {
                /* Optional: adjust or remove underline for mobile */
                bottom: 10px; 
                left: 50%;
                transform: translateX(-50%);
            }
            
            .nav-links a:hover::after {
                width: 50%; /* Example: shorter underline */
            }

            .mobile-menu {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .hero-image {
                margin-top: 40px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .demo-content {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 0.8s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 0.8s ease forwards;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 0.8s ease forwards;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Loading Animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading.hide {
            opacity: 0;
            pointer-events: none;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
