/* css/header.css */
.main-header {
  background: #007a5c;
  color: white;
  padding: 10px 0;
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.main-header .logo {
  font-size: 1.5em;
  font-weight: bold;
}
.main-header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.main-header nav ul li {
  margin-left: 15px;
}
.main-header nav ul li a, .main-header nav ul li select {
  color: white;
  text-decoration: none;
  font-weight: 500;
  background: transparent;
  border: none;
}
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .main-header nav ul {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #007a5c;
  }
  .main-header nav ul.show {
    display: block;
  }
  .hamburger {
    display: block;
  }
}
