header {
  background-color: #ff9800;
  color: white;
  padding: 15px 20px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.header-links {
  display: flex;
  gap: 10px;
}

.header-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.header-links a:hover {
  background-color: #e68900;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #ff9800;
    margin-top: 10px;
    padding: 10px 0;
  }

  .header-links a {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
  }

  .header-links.show {
    display: flex;
  }
}
