 /* Mobile navigation adjustments */






 /* Show hamburger icon on mobile */


 @media only screen and (min-width: 48.125rem) and (max-width: 84.375rem) {
     body {
         display: flex;
         justify-content: space-between;
         align-items: center;
         padding: 1rem 2rem;
     }

     .logo img {
         width: 100%;
         max-width: 11.25rem;
     }

     .hamburger-menu {
         display: none;
         /* Hide hamburger on medium screens */
     }

     .menu-items {
         display: flex !important;
         /* Force show menu items */
         flex-direction: row;
         position: static;
         background-color: transparent;
         box-shadow: none;
         gap: 1.5rem;
         align-items: center;
     }

     .menu-items li {
         position: relative;
     }

     .menu-items li a {
         font-size: 0.9rem;
         white-space: nowrap;
     }

 

     .menu-icon {
         display: none;
         /* Hide chevrons on medium screens */
     }
 }