.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e2e2e2;
  position: relative;
  z-index: 1000;
}

.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  height: 120px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: #1f2933;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: #b21f24;
}

.nav-cta {
  background: #b21f24;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 4px;
}

.nav-cta:hover {
  background: #8f191d;
  color: #ffffff !important;
}

.nav-dropdown {
  position: relative;
}

.dropdown-link {
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 245px;
  background: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  z-index: 1001;
}

.dropdown-menu a {
  display: block;
  padding: 11px 16px;
  font-size: 14px;
  color: #1f2933;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f4f4f4;
  color: #b21f24;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: #1f2933;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .site-header-inner {
    padding: 12px 18px;
  }

  .site-logo img {
    height: 56px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid #ddd;
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a {
    padding: 14px 22px;
    border-bottom: 1px solid #eee;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: #f7f7f7;
  }

  .dropdown-menu a {
    padding-left: 38px;
  }

  .nav-cta {
    border-radius: 0;
    text-align: left;
  }
}