body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f9f9f9;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 1rem 1.5rem;
  color: #111;
}

.logo {
  font-family: 'Catamaran', sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}

.nav-links {
  font-family: 'Catamaran', sans-serif;
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

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

.nav-links li a {
  color: #111;
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #f2f2f2;
    position: absolute;
    top: 52px;
    right: 0;
    width: 100%;
    padding: 1rem 0 1rem 0;
    text-align: center;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
