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

        body {
            font-family: Arial, sans-serif;
        }

        .navigation nav {
            background-color: white;
            padding: 10px 20px;
            border-bottom: 1px solid #ddd;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 40px;
        }

        .menu-container {
            display: flex;
            align-items: center;
        }

        .menu {
            list-style: none;
            display: flex;
        }

        .menu li {
            position: relative;
        }

        .menu a {
            text-decoration: none;
            color: #007BFF; /* Main menu color */
            padding: 10px 15px;
            display: block;
            font-weight: bold;
        }

        .menu a:hover {
            background: #f0f0f0;
        }

        .submenu {
            list-style: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            display: none;
            min-width: 150px;
            border-radius: 5px;
        }

        .submenu li {
            width: 100%;
        }

        .submenu a {
            padding: 10px;
            white-space: nowrap;
            color: #5A9BFF; /* Lighter blue */
            font-weight: normal;
        }

        .submenu a:hover {
            color: #007BFF; /* Darker blue */
            background: #f0f0f0;
        }

        .menu li:hover .submenu {
            display: block;
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            background: white;
            padding: 10px;
            cursor: pointer;
            color: #007BFF;
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            border: none;
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
            }

            .logo {
                order: -1; /* Moves logo to the top */
                margin-bottom: 10px;
            }

            .menu-container {
                flex-direction: column;
                align-items: flex-start; /* Align menu items to the left */
                width: 100%;
            }

            .menu {
                flex-direction: column;
                display: none;
                width: 100%;
                background: white;
                text-align: left; /* Align text to left */
            }

            .menu.show {
                display: flex;
            }

            .submenu {
                position: relative;
                display: none;
            }

            .menu li.active .submenu {
                display: block;
            }

            .menu-toggle {
                display: block;
                align-self: flex-start; /* Align toggle button to left */
                margin-bottom: 10px;
            }
        }

        /* Sample Content */
        .content {
            padding: 20px;
            max-width: 800px;
            margin: 20px auto;
            text-align: justify;
        }