body { font-family: 'Roboto', sans-serif; margin: 0; padding: 0; background: #f0f4f8; }
    header {
  background: linear-gradient(180deg, #0b0b0b, #000000);
  color: #ffffff;
  padding: 1rem 2rem;
  padding-left: 15px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  min-height: 44px;
  position: relative;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45);
}

/* ===== Logo ===== */
.logo-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-img {
  height: 50px;
  width: auto;
}

/* ===== Hamburger ===== */
.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  height: 24px;
  z-index: 20;
}

.menu-icon div {
  width: 25px;
  height: 3px;
  background-color: #D9AE5D;
  border-radius: 2px;
}

/* ===== Dropdown ===== */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  overflow: hidden;
  z-index: 10;
  width: 220px;
}

.dropdown-menu a {
  display: block;
  padding: 14px;
  color: #1f1f1f;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background-color: #f1f1f1;
}

.dropdown-menu.show {
  display: block;
}
    
   