
#burger-mobile {
  display: none;
}

@media (max-width: 980px) {
  body {
    font-family: 'Inter', sans-serif;
  }

  #mobile-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 32px);
    margin: 16px;
    background-color: white;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }

  body.menu-open #mobile-header-bar {
    display: none;
  }

  .mobile-header-logo {
    width: 44%;
    height: auto;
  }

  #burger-mobile {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .burger-line {
    width: 24px;
    height: 2px;
    background: black;
    border-radius: 1px;
  }

  #mobile-fullscreen-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #F4F5F8;
    z-index: 2000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 30px 40px;
  }

  #mobile-fullscreen-menu.active {
    display: flex;
  }

  .mobile-menu-content {
    width: 100%;
  }

  .mobile-logo {
    width: 44%;
    margin-bottom: 40px;
  }

  .mobile-menu-content ul {
    list-style: none !important;
    padding: 0;
    margin-bottom: 40px;
  }

  .mobile-menu-content ul li {
    margin: 30px 0;
    list-style-type: none !important;
  }

  .mobile-menu-content ul li::marker {
    display: none !important;
  }

  .mobile-menu-content ul li a {
    text-decoration: none;
    font-size: 40px;
    font-weight: 700;
    color: black;
    display: block;
  }

  .mobile-contact-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: black;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
  }

  #close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: black;
    cursor: pointer;
  }
}

.logo-header-image {
  max-width: 44%;
  height: auto;
}
