 /* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --color-light: #EDF1D6;
            --color-medium-light: #9DC08B;
            --color-medium: #609966;
            --color-dark: #40513B;
            --color-text: #222222; /* Increased contrast */
            --color-text-light: #555555; /* Increased contrast */
            --font-primary: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-primary);
            line-height: 1.6;
            color: var(--color-text);
            background-color: var(--color-light);
            padding-top: 80px;
        }
        
        /* Typography - Improved contrast */
        h1, h2, h3, h4 {
            color: #2C3E2C; /* Darker shade for better contrast */
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.5rem;
        }
        
        h2 {
            font-size: 2rem;
            margin-top: 2.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--color-medium-light);
        }
        
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: #4A7C59; /* Better contrast */
        }
        
        p {
            margin-bottom: 1.25rem;
            color: var(--color-text);
        }
        
        ul, ol {
            margin-bottom: 1.25rem;
            padding-left: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        a {
            color: #4A7C59; /* Better contrast */
            text-decoration: none;
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--color-dark);
            text-decoration: underline;
        }
        
        /* Layout */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Header */
        header {
            background-color: var(--color-dark);
            color: white;
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }
        
        .logo-img {
            width: 48px;
            height: 48px;
            object-fit: contain;
            border-radius: 8px;
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-medium-light);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
        }
        
        nav a {
            color: white;
            font-weight: 500;
        }
        
        nav a:hover {
            color: var(--color-medium-light);
            text-decoration: none;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section - Updated with solid background and image below */
        .hero {
            background-color: var(--color-dark);
            color: white;
            padding: 4rem 0 3rem;
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(64, 81, 59, 0.9) 0%, rgba(96, 153, 102, 0.8) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .hero h1 {
            color: #FFFFFF; /* Pure white for maximum contrast */
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            color: #F8F9FA; /* Lighter shade for better contrast */
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Hero Download Button */
        .hero-download-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background-color: var(--color-medium);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: var(--transition);
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            margin-bottom: 1.5rem;
            transform: translateZ(0); /* GPU acceleration */
        }
        
        .hero-download-btn:hover {
            background-color: var(--color-medium-light);
            color: var(--color-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            text-decoration: none;
        }
        
        .hero-download-icon {
            font-size: 1.5rem;
        }
        
        /* Hero Image Below Content */
        .hero-image-container {
            position: relative;
            z-index: 2;
            margin-top: 2rem;
            padding: 0 1.5rem;
        }
        
        .hero-image {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 3px solid rgba(255, 255, 255, 0.1);
            transform: translateZ(0); /* GPU acceleration */
        }
        
        /* Main Content - Improved contrast */
        main {
            background-color: #FFFFFF; /* Pure white */
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 3rem;
            margin-bottom: 3rem;
        }
        
        .content-section {
            margin-bottom: 3rem;
        }
        
        /* Image Styles */
        .section-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 1.5rem auto;
            display: block;
            box-shadow: var(--shadow);
            border: 1px solid var(--color-medium-light);
            transform: translateZ(0); /* GPU acceleration */
        }
        
        /* Notice Boxes */
        .notice-box {
            background-color: rgba(157, 192, 139, 0.15);
            border-left: 4px solid var(--color-medium);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            color: #2C3E2C; /* Better contrast */
        }
        
        .warning-box {
            background-color: rgba(255, 193, 7, 0.15);
            border-left: 4px solid #D4A017; /* Better contrast */
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            color: #5C4813; /* Better contrast */
        }
        
        .tip-box {
            background-color: rgba(40, 167, 69, 0.15);
            border-left: 4px solid #28a745;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            color: #1E4A2B; /* Better contrast */
        }
        
        /* Pros and Cons */
        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .pros, .cons {
            padding: 1.5rem;
            border-radius: var(--border-radius);
        }
        
        .pros {
            background-color: rgba(157, 192, 139, 0.15);
            border: 1px solid var(--color-medium-light);
            color: #2C3E2C; /* Better contrast */
        }
        
        .cons {
            background-color: rgba(220, 53, 69, 0.05);
            border: 1px solid #DC3545;
            color: #5C1E24; /* Better contrast */
        }
        
        .pros h3, .cons h3 {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .pros h3:before {
            content: "✓";
            color: #28a745;
            font-weight: bold;
        }
        
        .cons h3:before {
            content: "✗";
            color: #dc3545;
            font-weight: bold;
        }
        
        /* FAQ */
        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 1.5rem;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            font-weight: 600;
            color: #2C3E2C; /* Better contrast */
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .faq-question:before {
            content: "Q.";
            color: var(--color-medium);
            font-weight: bold;
        }
        
        .faq-answer {
            color: var(--color-text);
            padding-left: 1.5rem;
        }
        
        /* Floating Download Button */
        .floating-download-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: var(--color-medium);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 600;
            z-index: 999;
            transition: var(--transition);
            text-decoration: none;
            border: none;
            cursor: pointer;
            transform: translateZ(0); /* GPU acceleration */
        }
        
        .floating-download-btn:hover {
            background-color: var(--color-dark);
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .download-icon {
            font-size: 1.5rem;
        }
        /* Legal Section Styles */
#legal {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #40513B;
}

.legal-notice h3 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
}

.legal-notice ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-notice li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-box {
    background: #e8f4fc;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid #b6d4fe;
}

.final-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.final-disclaimer ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.final-disclaimer em {
    color: #856404;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #legal {
        padding: 15px;
    }
    
    .legal-notice h3 {
        font-size: 1.1em;
    }
}
        /* Footer */
        footer {
            background-color: var(--color-dark);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }
        
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        footer p {
            color: rgba(255, 255, 255, 0.9); /* Better contrast */
            margin-bottom: 1rem;
        }
        
        .disclaimer {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8); /* Better contrast */
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero h1 {
                font-size: 2.4rem;
            }
            
            .pros-cons {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--color-dark);
                padding: 1rem;
                display: none;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero {
                padding: 3rem 0 2rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-download-btn {
                padding: 0.875rem 1.75rem;
                font-size: 1rem;
            }
            
            main {
                padding: 2rem;
            }
            
            .floating-download-btn {
                bottom: 1.5rem;
                right: 1.5rem;
                padding: 0.875rem 1.25rem;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 1rem;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-download-btn {
                padding: 0.75rem 1.5rem;
                font-size: 0.95rem;
            }
            
            main {
                padding: 1.5rem;
            }
            
            .floating-download-btn {
                bottom: 1rem;
                right: 1rem;
                padding: 0.75rem 1rem;
                font-size: 0.85rem;
            }
            
            .download-icon {
                font-size: 1.25rem;
            }
            
            .logo-img {
                width: 40px;
                height: 40px;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
        }
        
        /* Print Styles */
        @media print {
            .floating-download-btn,
            .mobile-menu-btn,
            nav {
                display: none !important;
            }
            
            body {
                padding-top: 0;
                background-color: white;
            }
            
            main {
                box-shadow: none;
                padding: 0;
            }
        }
        
        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        
        /* Focus styles for accessibility */
        a:focus,
        button:focus {
            outline: 2px solid var(--color-medium);
            outline-offset: 2px;
        }
        
        /* Performance optimizations */
        .will-change {
            will-change: transform;
        }