/* sticky header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(74, 124, 89, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 65px;
  padding: 5px 0;
}

.site-logo img {
  height: 38px;
  display: block;
}

.site-nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav li {
  width: 110px;
}

.site-nav a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 35px;

  color: #2f5c54;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;

  border-radius: 3px;
  transition: 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  background: #54b8af;
  color: #fff;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border: 1px solid #ddd;
  z-index: 1001;
}

.has-dropdown:hover .dropdown {
  display: block !important;
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  white-space: nowrap;
}
