/* Header styles */
.header {
  background-color: #fafafa;
  padding-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Logo styles */
.header__logo-link img {
  height: 40px;
  margin: 10px 0;
}

/* Navigation styles */
.header__nav {
  background-color: #f8f8f8;
  font-family: "Lato", sans-serif;
}

.header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.header__menu {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.header__menu-item {
  position: relative;
}

.header__menu-link {
  display: block;
  padding: 20px 15px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #575756;
  transition: color 0.3s ease;
}

.header__menu-link:hover {
  color: #06a1f3;
}

/* Dropdown styles */
.header__dropdown {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 1;
  list-style-type: none;
  padding: 0;
}

.header__menu-item--has-children:hover .header__dropdown {
  display: block;
}

.header__dropdown-link {
  color: #575756;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.header__dropdown-link:hover {
  color: #06a1f3;
}

/* Mobile toggle button */
.header__mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #575756;
  background: none;
  border: none;
  padding: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .header__nav-inner {
      flex-wrap: wrap;
      justify-content: space-between;
  }

  .header__logo-link {
      flex: 1;
  }

  .header__mobile-toggle {
      display: flex;
      align-items: center;
      order: 2;
  }

  .header__menu {
      display: none;
      flex-direction: column;
      width: 100%;
      order: 3;
  }

  .header__menu.show {
      display: flex;
  }

  .header__dropdown {
      position: static;
      box-shadow: none;
      display: none;
  }

  .header__menu-item--has-children:hover .header__dropdown {
      display: none;
  }

  .header__menu-item--has-children.open .header__dropdown {
      display: block;
  }

  .header__mobile-toggle-icon--close {
      display: none;
  }

  .header__mobile-toggle[aria-expanded="true"]
      .header__mobile-toggle-icon--menu {
      display: none;
  }

  .header__mobile-toggle[aria-expanded="true"]
      .header__mobile-toggle-icon--close {
      display: inline;
  }

  .header__mobile-toggle-text {
      margin-right: 10px;
  }
}
