
* { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; background: #f8fafc; color: #0f172a; line-height: 1.6; }
    a { text-decoration: none; color: inherit; }

    header { background: #0f172a; color: #fff; padding: 20px 40px; position: sticky; top: 0; z-index: 100; }
    nav { display: flex; justify-content: space-between; align-items: center; }
    nav ul { list-style: none; display: flex; gap: 20px; }
    nav li a:hover { color: #facc15; }
    .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* =========================
   SITE HEADER
========================= */
.site-header {
  background: #0f172a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 38px;
}

.logo span {
  font-size: 11px;
  color: #cbd5f5;
}

.nav-links a {
  color: #e5e7eb;
  margin-left: 22px;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #facc15;
}
