/* ===== HEADER / NAV ===== */
.site-header {
  background: #fff;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 73px;
}

.header-inner {
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 73px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-link img {
  height: 60px;
  width: 107px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 16px;
  font-weight: 400;
  color: #2952d9;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

.main-nav a:hover {
  color: #1e3fa8;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2952d9;
  margin: 5px 0;
  transition: 0.3s;
}
