/* Section Links Dropdown Styles */
.section-links-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  display: none;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 16px 0;
}

.header-menu-item:hover .section-links-dropdown,
.header-menu-item:focus-within .section-links-dropdown {
  display: block;
}

.section-links-dropdown .section-links-title {
  font-weight: 600;
  font-size: 15px;
  color: #2d2d2d;
  margin-bottom: 8px;
  padding: 0 24px;
}

.section-links-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 0;
}

.section-links-dropdown li {
  margin: 0;
  padding: 0;
}

.section-links-dropdown a {
  display: block;
  padding: 8px 24px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.section-links-dropdown a:hover,
.section-links-dropdown a:focus {
  background: #f4f4f4;
  color: #1a73e8;
}

.section-links-dropdown .section-links-group {
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .header-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .header-menu-item {
    position: relative;
  }
}

.menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-items > .menu-item {
    list-style: none;
}
