/* Mobile Navigation Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav.open {
    transform: translateX(0);
  }

  .mobile-nav a {
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: black;
  }

  .mobile-nav .close-button {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: black;
  }