.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background-color: #fff;
  position: relative;
  z-index: 10;
}

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

.navigation ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navigation ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
}

.navigation ul li a:hover {
  color: #d0137a;
}

.contact-button a {
  padding: 0.75rem 1.5rem;
  background-color: #d0137a;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
}

/* ------ MOBILE ------ */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
    justify-content: space-between;
  }

  .logo img {
    width: 100px;
    height: auto;
  }

  .menu-toggle {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    z-index: 15;
  }

  .menu-toggle:focus {
    outline: none;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
  }

  .contact-button a {
    padding: 0.4rem 0.8rem;
    font-size: 12px;
  }

  .navigation {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .navigation.open {
    display: flex;
  }

  .navigation ul {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
}
