.navbar {
    width: 100vw;
    box-sizing: border-box;
    background-color: #000000;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
  }
  
  .navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .logo-image {
    height: 28px;
    margin-right: 8px;
  }
  
  .offtimeNewLogoTransparent {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    user-select: none;
  }
  
  .navbar-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    gap: 40px;
  }
  
  .nav-left {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-grow: 1;
  }
  
  .nav-right {
    display: flex;
  }
  
  .nav-link {
    color: #999999;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #ffffff;
  }
  
  .cta-nav {
    background-color: #77DB89;
    color: #000000;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 15px;
    text-decoration: none;
  }
  
  .cta-nav:hover {
    background-color: #66c67a;
  }
  
  /* Burger Icon */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-left: auto;
  }
  
  .menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .navbar-links {
      display: none;
      flex-direction: column;
      align-items: flex-end;
      width: 100%;
      margin-top: 16px;
      gap: 12px;
    }
  
    .navbar-links.active {
      display: flex;
    }
  
    .nav-left,
    .nav-right {
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
      width: 100%;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .cta-nav {
      align-self: flex-end;
    }
  }
  