* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

.main-header {
  width: 100%;
  height: 120px;
  background: rgb(208, 206, 206);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  position: relative;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-container img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.logo-container h2 {
  font-size: 28px;
  color: #222;
  font-weight: bold;
  margin: 0;
  white-space: nowrap;
}

#navMenu {
  display: flex;
  align-items: center;
  gap: 35px;
}

#navMenu a {
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

#navMenu a:hover {
  color: #1abc9c;
}

.menu-btn {
  display: none;
}

/* Mobile Header */
@media screen and (max-width: 900px) {
  .main-header {
    height: auto;
    padding: 10px 15px;
  }

  .logo-container {
    gap: 10px;
  }

  .logo-container img {
    width: 55px;
    height: 55px;
  }

  .logo-container h2 {
    font-size: 18px;
  }

  .menu-btn {
    display: block;
    font-size: 28px;
    background: white;
    border: 1px solid #333;
    padding: 3px 9px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
  }

  #navMenu {
    display: none;
    position: absolute;
    top: 70px;
    right: 15px;
    width: 180px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 10px 0;
    flex-direction: column;
    gap: 0;
    z-index: 9999;
  }

  #navMenu.show {
    display: flex;
  }

  #navMenu a {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 13px;
  }
}