* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: white;
  color: black;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  position: relative;
  background: white;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 999;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: black;
  transition: 0.3s ease;
}

/* Icons */
.icons {
  display: flex;
  gap: 14px;
  font-size: 18px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #f2f2f2;
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 99;
  border-top: 1px solid #ddd;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  padding: 14px 20px;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  text-transform: uppercase;
  font-size: 14px;
  background: white;
}
