    <style>
        /* Add your navigation styles here */
        .navbar-brand img {
            max-height: 60px; /* Adjust the height of the logo as needed */
        }

        /* Customize the navbar background color */
        .navbar {
            background-color: #3A2462 !important; /* Transparent background */
            padding-left: 10%;
            padding-right: 10%;
            box-shadow: none; /* Remove box shadow */
        }

        /* Remove list styles for navbar */
        .navbar-nav,
        .navbar-nav .nav-item,
        .navbar-nav .nav-item.dropdown,
        .navbar-nav .nav-item.dropdown .dropdown-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* Remove green dot style for navbar */
        .navbar-nav li:before {
            content: none;
        }

        /* Customize the navbar links */
        .navbar-nav .nav-link {
            color: #fff; /* Dark gray text color */
            padding: 0.5rem 1rem; /* Adjust padding as needed */
            font-size: 18px; /* Adjust the font size as needed */
        }

        /* Customize the active navbar link */
        .navbar-nav .nav-item.active .nav-link {
            color: #fff;
        }

        /* Customize the dropdown menu */
        .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
            display: block;
        }

        /* Customize the dropdown menu items */
        .navbar-nav .nav-item.dropdown .dropdown-menu a {
            color: #000; /* Dark gray text color */
            padding: 0.5rem 1rem; /* Adjust padding as needed */
        }

        /* Customize the mobile toggle button color */
    </style>