.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #01082e;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  opacity: 1 !important;
  transform: none !important;
}

body {
  padding-top: 53px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
}

.nav-logo {
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-back-link {
  color: #fff;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-back-link:hover {
  color: #d40047;
}

