<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Legal Notice - Michaelsoft</title> <script src="/tailwindcss.js"></script> <style> .glassmorphism { background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.3); } </style> </head> <body class="bg-gradient-to-br from-blue-500 to-purple-600 text-white"> <header class="glassmorphism p-4 text-center sticky top-0 z-50"> <nav> <ul class="flex justify-center space-x-4"> <li><a href="/michaelsoft.com/index.html" class="hover:underline">Home</a></li> <li><a href="/michaelsoft.com/products.html" class="hover:underline">Products</a></li> <li><a href="/michaelsoft.com/press.html" class="hover:underline">Press</a></li> <li><a href="/michaelsoft.com/contact.html" class="hover:underline">Contact</a></li> </ul> </nav> </header> <main class="p-8"> <section class="glassmorphism p-6 rounded-lg mb-8"> <h1 class="text-4xl font-bold mb-4">Legal Notice</h1> <p class="mb-4">This website is the property of Michaelsoft Corporation. By accessing or using this website, you agree to be bound by these terms and conditions.</p> <h2 class="text-2xl font-bold mb-3">1. Acceptance of Terms</h2> <p class="mb-4">The use of this website is subject to the following terms and conditions. If you disagree with any part of these terms, you must refrain from using our website.</p> <h2 class="text-2xl font-bold mb-3">2. Copyright and Trademarks</h2> <p class="mb-4">All content on this website, including text, graphics, logos, and software, is the property of Michaelsoft or its licensors and is protected by copyright laws.</p> <h2 class="text-2xl font-bold mb-3">3. Limitation of Liability</h2> <p class="mb-4">Michaelsoft shall not be liable for any damages arising from the use of this website. This includes, but is not limited to, direct, indirect, incidental, or consequential damages.</p> <h2 class="text-2xl font-bold mb-3">4. Privacy Policy</h2> <p class="mb-4">Your use of this website is subject to our <a href="/michaelsoft.com/privacy-policy.html" class="text-blue-200 hover:underline">Privacy Policy</a>, which explains how we collect and use personal information.</p> <h2 class="text-2xl font-bold mb-3">5. Governing Law</h2> <p class="mb-4">These terms and conditions are governed by and construed in accordance with the laws of the State of Washington, USA.</p> </section> <section class="text-left"> <h2 class="text-xl font-bold mb-2">Contact for Legal Inquiries</h2> <p><a href="mailto:legal@michaelsoft.com" class="text-blue-200 hover:underline">legal@michaelsoft.com</a></p> <p>1 Microsoft Way, Redmond, WA 98052</p> </section> </main> <footer class="bg-gray-300 p-4 text-center"> <p><!-- Note: Actual copyright year would be dynamically generated in a real implementation --> &copy; 2025 Michaelsoft. All rights reserved. </p> <ul class="flex justify-center space-x-4 mt-2"> <li><a href="/michaelsoft.com/terms-of-service.html" class="text-blue-700 hover:underline">Terms</a></li> <li><a href="/michaelsoft.com/privacy-policy.html" class="text-blue-700 hover:underline">Privacy</a></li> <li><a href="/michaelsoft.com/accessibility.html" class="text-blue-700 hover:underline">Accessibility</a></li> </ul> </footer> </body> </html>