body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

.custom-header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
}

.custom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px;
  width: auto;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  z-index: 1001;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
}

.menu-toggle svg,
.menu-close svg {
  height: 24px;
  width: 24px;
  stroke: #000;
}

.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  z-index: 1001;
  display: flex;
  align-items: center;
  padding: 0;
}

#mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255);
  overflow-y: auto;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
}

#mobile-menu.active {
  display: block;
  transform: translateX(0);
}

@media (min-width: 640px) and (max-width: 1023px) {
  #mobile-menu {
    width: 70%;
    left: 30%;
  }
}

@media (min-width: 1024px) {
  .custom-header {
    display: none;
  }
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
}

.mobile-menu-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 20px;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.mobile-menu-list ul {
  list-style-type: none;
  padding: 0;
  line-height: 26px;
}

.mobile-menu-list li {
  margin: 10px 0;
}

.mobile-menu-list a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
}
