* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 30px;
      background: #222;
      position: relative;
  	  height:100px;
    }

    .left, .right {
      display: flex;
      align-items: center;
      gap: 20px;
	  z-index: 110; 
    }

    .logo {
      flex-shrink: 0;
    }

    .logo img {
      max-width: 100%;
      height: auto;
    }

    .custom-btn {
      background: #555;
      color: white;
      padding: 8px 12px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 20px;
      cursor: pointer;
      z-index: 11;
    }

    .hamburger span {
      height: 3px;
      background: white;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .nav-links {
  display: none;
  position: absolute;
  top: 108px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  flex-direction: column;
  padding: 40px 100px;
  gap: 10px;
  z-index: 10;
  text-align: center;
  border: 3px solid #f3d388;
  line-height: 45px;
}

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 24px;
    }

    .nav-links.show {
      display: flex;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }