.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 70px;
  background-color: #fff;
  padding: 0 40px;
}

.nav-logo {
  color: #1A2E44;
  font-size: 22px;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span {
  color: #E8451E;
}

.nav-links {
  flex-grow: 1;
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #1A2E44;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-links a.active {
  color: #E8451E;
}

.nav-cta {
  background-color: #E8451E;
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: #c73a18;
}

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    align-items: center;
  }

  .nav-links.nav-open li {
    margin-bottom: 15px;
  }
}