.header .header-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .header-content ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.header .header-content ul li a {
  font-style: italic;
  color: #000;
  text-decoration: none;
}

.header {
  position: absolute;
  z-index: 11;
  top: 20px;
  left: 0;
  width: 100%;
}

.header .row {
  align-items: center;
}

.mobile-header {
  display: none;
}

.mobile-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-close-btn {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 30px;
}

@media (max-width: 768px) {
  .header .header-content {
    display: none;
  }

  .mobile-header {
    display: block;
    padding: 10px 20px;
  }

  .mobile-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-hamburger {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }

  .mobile-nav.active {
    left: 0;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .mobile-nav ul li {
    margin: 20px 0;
  }

  .mobile-nav ul li a {
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
    font-style: italic;
  }
}

@media (max-width: 428px) {
  .mobile-nav ul li a {
    font-size: 1.3rem;
  }

  .mobile-logo img {
    width: 180px !important;
    height: auto !important;
  }

  .mobile-hamburger svg {
    width: 28px;
    height: 28px;
  }
}
