
        /* CSS Variables for Consistent Theming */
        :root {
            --primary-color: #1a73e8;
            --secondary-color: #0d47a1;
            --accent-color: #00c853;
            --text-main: #333333;
            --text-light: #555555;
            --bg-light: #f4f7f6;
            --bg-white: #ffffff;
            --font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

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

        body {
            font-family: var(--font-family);
            color: var(--text-main);
            line-height: 1.6;
            background-color: var(--bg-light);
        }

        /* Typography */
        h1, h2, h3, h4 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        h1 { font-size: 2.2rem; line-height: 1.3; }
        h2 { font-size: 1.8rem; margin-top: 2rem; border-bottom: 2px solid var(--primary-color); padding-bottom: 0.5rem; }
        h3 { font-size: 1.2rem; margin-top: 1.5rem; color: var(--primary-color); }
        h4 { font-size: 1.1rem; margin-top: 1.2rem; color: var(--text-main); }
        p { margin-bottom: 1rem; color: var(--text-light); }
        ul { margin-bottom: 1rem; padding-left: 20px; color: var(--text-light); }
        li { margin-bottom: 0.5rem; }

        /* Navigation */
        header {
            background-color: var(--bg-white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative; /* Fixed for absolute mobile positioning */
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
        }

        nav a {
            text-decoration: none;
            color: var(--text-main);
            font-weight: 600;
            transition: color 0.3s;
        }

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

        /* Mobile Menu Toggle */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-main);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: var(--bg-white);
            padding: 3rem 2rem;
            text-align: center;
        }

        .hero h1 {
            color: var(--bg-white);
            margin-bottom: 1rem;
            border: none;
        }

        .hero p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 2rem auto;
            font-size: 1.1rem;
        }

        .btn-download {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--bg-white);
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: background-color 0.3s, transform 0.2s;
            box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
            margin-top: 1rem;
        }

        .btn-download:hover {
            background-color: #00e676;
            transform: translateY(-2px);
        }

        /* Main Content Container */
        main {
            max-width: 1000px;
            margin: 2rem auto;
            padding: 0 2rem 2rem 2rem;
            background: var(--bg-white);
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
            border-radius: 8px;
        }

        section {
            padding: 2rem 0 0 0;
        }

        .faq-block strong {
            display: block;
            margin-top: 1rem;
            color: var(--primary-color);
        }

        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: var(--bg-white);
            text-align: center;
            padding: 2.5rem 2rem;
            margin-top: 3rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            color: var(--bg-white);
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            text-decoration: underline;
            opacity: 0.8;
        }

        footer p {
            color: rgba(255,255,255,0.7);
            margin: 0;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
            }

            nav ul {
                display: none;
                flex-direction: column;
                background-color: var(--bg-white);
                padding: 1rem 0;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }

            nav ul.active {
                display: flex;
            }

            nav ul li {
                text-align: center;
                padding: 0.5rem 0;
            }

            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            
            .footer-links {
                gap: 1rem;
                flex-direction: column;
            }
        }
        .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    max-height: 45px; /* Adjust this value to make your logo bigger or smaller */
    width: auto;
    display: block;
}