body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .logo { font-size: 28px; font-weight: bold; color: #FF6B35; text-align: center; margin: 20px 0; }
        nav { background: #1E3A8A; padding: 10px; display: flex; justify-content: center; }
        nav a { color: white; margin: 0 15px; text-decoration: none; }
        .mobile-nav-toggle { display: none; }
        h1 { color: #1E3A8A; border-bottom: 2px solid #FF6B35; padding-bottom: 10px; }
        h2 { color: #1E3A8A; margin-top: 30px; }
        h3 { color: #FF6B35; }
        .download-btn, .login-btn { background: #FF6B35; color: white; padding: 10px 20px; margin: 15px 0; text-align: center; display: inline-block; border-radius: 5px; }
        .download-btn:hover, .login-btn:hover { background: #1E3A8A; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        .tags { margin: 20px 0; }
        .tags a { background: #eee; padding: 5px 10px; margin: 0 5px; text-decoration: none; color: #1E3A8A; }
        footer { margin-top: 40px; padding: 20px; background: #1E3A8A; color: white; text-align: center; }
        @media (max-width: 768px) {
            .mobile-nav-toggle { display: block; position: absolute; top: 10px; right: 10px; background: #FF6B35; color: white; padding: 5px 10px; border-radius: 5px; }
            nav { display: none; flex-direction: column; }
            nav.active { display: flex; }
        }
