.mobile-menu {
    display: none;
}

@media only screen and (max-width: 600px) {
    /* Hide the desktop header */
    #header {
        display: none;
    }

    #mobile_image {
        padding-left: 50px;
		padding-right: 50px;
		padding-top: 25px;
        background-color: #FFFFFF;
		display: block;
    }

    /* Show the mobile menu */
    .mobile-menu {
        display: block;
        background-color: #FFFFFF;
        width: 100%;
        position: relative; /* Change to fixed when scrolling */
        height: auto; /* Let the height adjust dynamically based on content */
        transition: top 0.3s; /* Smooth transition for fixed positioning */
        z-index: 1000; /* Ensure it stays above other content */
    }

    #mobile-menu-btn {
        display: block;
        cursor: pointer;
        text-align: right;
        font-size: 1.2em;
        color: #0E123B;
        background-color: #FFFFFF;
        padding: 10px;
        margin-top: 10px;
    }
	#mobile-menu-btn img {
    width: 24px; /* Adjust the size as needed */
    height: auto; /* Maintain aspect ratio */
}

    .mobile-links {
        display: none;           /* Hidden by default */
        flex-direction: column;   /* Ensure correct layout when shown */
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        background-color: #FFFFFF;
    }

    .mobile-links.show {
        display: flex;            /* Show when the "show" class is added */
    }

    .mobile-links p {
        padding: 15px;
        font-size: 1.2em;
        margin: 0;
    }

    .mobile-links p a {
        text-decoration: none;
        color: #0E123B;
    }

    .mobile-links p a:hover {
        color: #F6861F;
    }
}

.fixed {
    position: fixed; /* Make the mobile menu fixed */
    top: 0; /* Align it to the top of the viewport */
    left: 0; /* Align it to the left edge */
}
