/* General styling */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        header {
            background-color: #4F2683; /* BACKGROUND COLOR FOR HEADER */
            color: white;
            padding: 30px 15px;
			/* padding: 1rem; */
            display: flex;
            align-items: center;
            position: relative; /* Allows absolute positioning for title */
			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
		

        /* Title styling */
        .title {
            font-size: 2em;
			font-weight: bold;
            text-align: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .title a {
            color: white;
            text-decoration: none;
        }
		
		.motto {
            font-size: 1em;
            text-align: center;
            position: absolute;
            left: 50%;
			top: 70%;
            transform: translateX(-50%);
        }
		.mottom {
			font-weight: bold;
            text-align: center;
            position: absolute;
            transform: translateX(-50%);
        }
		.titles {
            text-decoration: none;
            color: white;
        }

        /* Menu container */
        .menu-container {
            display: flex;
            gap: 20px; /* Spacing between dropdowns */
        }

        /* Dropdown styling */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropbtn {
            background-color: #4F2683; /* BACKGROUND COLOR FOR DROPDOWN MENU BUTTONS */
			display: flex; /* Align items in a row */
			align-items: center; /* Vertically center the content */
            color: white;
            padding: 10px 15px;
            font-size: 16px;
            border: none;
            cursor: pointer;
			
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1;
			text-align: left; /* Align text to the left */	
        }

        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown:hover .dropbtn {
            background-color: #575757;
        }

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space the lines evenly */
    width: 20px; /* Adjust as needed */
    height: 15px; /* Adjust as needed */
    margin-right: 10px; /* Space between icon and text */
}

.menu-icon div {
    background-color: white;
    height: 3px; /* Line thickness */
    width: 100%; /* Full width of the icon */
}

        .menu-icon div:nth-child(1) {
            top: 0;
        }
        .menu-icon div:nth-child(2) {
            top: 8px;
        }
        .menu-icon div:nth-child(3) {
            top: 16px;
        }