body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #1a73e8; color: white; padding: 15px; border-radius: 5px; display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 24px; font-weight: bold; text-transform: uppercase; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { color: white; text-decoration: none; }
        .mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 20px; cursor: pointer; }
        h1 { color: #1a73e8; margin-top: 30px; }
        h2 { color: #0d47a1; margin-top: 25px; }
        h3 { color: #1565c0; margin-top: 20px; }
        .download-btn, .login-btn { display: inline-block; background-color: #4caf50; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .login-btn { background-color: #2196f3; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #eee; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #f1f1f1; padding: 5px 10px; margin-right: 5px; border-radius: 3px; }
        @media (max-width: 768px) {
            nav { display: none; }
            .mobile-menu-btn { display: block; }
            .nav-active { display: block; }
        }
