<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Sovereign Parliament</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        body {
            font-family: 'Segoe UI', sans-serif;
            background-color: #f9f9f9;
            color: #222;
            margin: 0;
            padding: 0;
        }
        header {
            background-color: #004466;
            color: white;
            padding: 20px;
            text-align: center;
        }
        nav {
            background-color: #006699;
            text-align: center;
            padding: 10px 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 15px;
            font-weight: bold;
        }
        nav a:hover {
            text-decoration: underline;
        }
        section {
            padding: 30px;
        }
        footer {
            background-color: #004466;
            color: white;
            text-align: center;
            padding: 15px;
            position: relative;
            bottom: 0;
            width: 100%;
        }
    </style>
</head>
<body>

    <header>
        <h1>Sovereign Parliament</h1>
        <p>Unity, Strategy, Sovereignty</p>
    </header>

    <nav>
        <a href="#">Home</a>
        <a href="#">About</a>
        <a href="#">Structure</a>
        <a href="#">Branches</a>
        <a href="#">Contact</a>
    </nav>

    <section>
        <h2>Welcome to Sovereign Parliament</h2>
        <p>The Sovereign Parliament is a visionary body composed of 250 wings, units, and committees, focused on innovation, strategy, technology, intelligence, and leadership across all fields including engineering, politics, defense, and humanitarian goals.</p>

        <h3>Core Divisions:</h3>
        <ul>
            <li>Technical Unit</li>
            <li>Research Wing</li>
            <li>Muslim Affairs Committee</li>
            <li>Continent-Based Committees</li>
            <li>CSE-242 Branch (Green University)</li>
        </ul>
    </section>

    <footer>
        &copy; 2025 Sovereign Parliament. All rights reserved.
    </footer>

</body>
</html>