header {
  color: #ffffff;
  background-color: #38aa44;
  width: 100%;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  background-color: #ffffff;
  border-radius: 50%;
  padding: 7px;
  flex-shrink: 0;
}

.logo_insindia {
  width: 55px;
  height: 55px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.hamburger span {
  background-color: white;
  height: 4px;
  border-radius: 2px;
  width: 100%;
  transition: 0.3s;
}

.header-main {
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover {
  background-color: #289a34;
  color: #e7ad1c;
}

.dropdown {
  position: relative;
}

.dropdown-title {
  cursor: pointer;
  font-size: 1.2em;
  padding: 8px 12px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #38aa44;
  min-width: 150px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
}

.dropdown-content a:hover {
  background-color: #289a34;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.NousSoutenir {
  margin-left: auto;
}

.NousSoutenir a {
  color: #ffffff;
  background-color: #e7ad1c;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.NousSoutenir a:hover {
  color: #dfdfdf;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 880px) {
  .hamburger {
    display: flex;
  }

  header {
    display: block;
  }

  .header-main {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-top: 1rem;
  }

  header.open .header-main {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    align-items: center;
  }

  .nav-links a,
  .dropdown-content a,
  .NousSoutenir a {
    width: 100%;
    text-align: center;
    font-size: 20px;
  }

  .dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-content {
    position: static;
    transform: none;
    width: 100%;
    background-color: #2e993a;
  }

  .NousSoutenir {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  .NousSoutenir a {
    display: inline-block;
  }
}
