@media screen and (max-width: 991px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #333;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.w--open {
    display: block;
  }

  .nav-menu-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-menu-list-item {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-menu-list-item a {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    color: #fff !important;
    text-align: center;
    text-decoration: none;
  }

  .nav-menu-list-item a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .nav-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    cursor: pointer;
  }

  .nav-menu-button.w--open {
    color: #fff;
  }

  .nav-menu-button .w-icon-nav-menu {
    width: 24px;
    height: 24px;
  }

  /* Fix for content being hidden under header */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
  }

  body {
    padding-top: 80px; /* Adjust this value based on your header height */
  }

  .page-wrapper {
    margin-top: 1rem;
  }

  .section:first-child {
    padding-top: 2rem;
  }
} 