.header {
  background-color: #F4F8ED;
  height: 123px;
  position: relative;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  margin-left: 99px;
}

.logo-image {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.navigation {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-right: 99px;
}

.nav-background {
  background-color: #F4F8ED;
  border-radius: 59px;
  padding: 10px 30px;
  box-shadow: 0px 4px 12.8px -4px rgba(0, 0, 0, 0.3);
  width: 1051px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 60px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #104C77;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #104C77;
}

@media (max-width: 1200px) {
  .header-container {
    padding: 0 15px;
  }
  
  .logo {
    margin-left: 20px;
  }
  
  .navigation {
    margin-right: 20px;
  }
  
  .nav-background {
    width: auto;
    max-width: 800px;
    padding: 10px 20px;
  }
  
  .nav-list {
    gap: 30px;
  }
  
  .nav-link {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 80px;
  }
  
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }
  
  .logo {
    margin: 0;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .navigation {
    margin: 10px 0 0 0;
  }
  
  .nav-background {
    width: 100%;
    max-width: none;
    padding: 8px 15px;
    height: auto;
  }
  
  .nav-list {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-link {
    font-size: 16px;
  }
}
