    body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background: #000;
    }

    .custom-header {
      background: linear-gradient(to right, #0a0a0a, #00c776, #0a0a0a);
      padding: 16px 30px;
    }

    .header-inner {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .header-left img {
      height: 38px;
    }

    .header-center {
      position: initial;
    }

    .burger-menu {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.15);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
    }

    .burger-menu span {
      display: block;
      width: 22px;
      height: 2px;
      background-color: white;
      border-radius: 2px;
    }

   

    .header-right .header-button {
      color: white;
      text-transform: uppercase;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
    }
    nav.main-nav {
  display: none;
}

.main-nav.active {
    display: block;
    position: absolute;
    z-index: 9;
    background: #05673f;
    width: max-content;
}
nav.main-nav.active ul {
    list-style: none;
    padding: 10px;
}
nav.main-nav.active ul a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
}
nav.main-nav.active ul li {
    padding-bottom: 10px;
}