.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #f9f9f9;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu a {
  margin-right: 15px;
  text-decoration: none;
  color: #555;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.drop-btn {
  cursor: pointer;
  margin-right: 15px;
  color: #555;
  text-decoration: none;
}

.drop-content {
  display: none;
  position: absolute;
  min-width: 160px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 6px 8px;
}

.drop-content a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: #111827;
  text-decoration: none;
  margin: 4px 0;
}

.drop-content a:hover {
  background: #f4f6f8;
}

.dropdown:hover .drop-content {
  display: block;
}
