.fact-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  font-family: 'Inter', sans-serif;
}

.fact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fact-logo-img {
  height: 40px;
}

.fact-nav {
  display: flex;
  gap: 2rem;
}

.fact-link {
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.fact-link:hover {
  color: #294aff;
}

.fact-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.fact-select {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  background: #fff;
  cursor: pointer;
}

.fact-login {
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.fact-login:hover {
  color: #294aff;
}

.fact-cta {
  background: #294aff;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.fact-cta:hover {
  background: #3a47e5;
}

.fact-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.fact-burger span {
  width: 24px;
  height: 2px;
  background: #1f2937;
}

/* Mobile menu */
.fact-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem;
  background: white;
  border-top: 1px solid #e5e7eb;
}

.fact-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fact-mobile-nav a,
.fact-mobile-nav select {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .fact-nav,
  .fact-actions {
    display: none;
  }
  .fact-burger {
    display: flex;
  }
}
