header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffffee;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: var(--header-height);
    line-height: var(--header-height);
}
.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
}

.logo {
    position: absolute;
    height: 100px;
    margin: 0px;
    padding: 0px;
    top: 0;
}
nav {
  display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #0e801d;
}
.content {
    margin-top: 90px;
    padding: 40px;
    line-height: 1.6;
}

.right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    --flex-wrap: wrap;
}
.icon-btn {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    color: #222;
    border: 1px solid #e9e9e9;
}

.icon-btn:hover {
  background: #f7f7f7;
}

button {
  background-color: #0e801d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
}

button:hover {
  background-color: #04a742;
}