nav {
  align-items: center;
  flex-wrap: wrap;
}

nav > a,
nav .profile-dropdown > button {
  text-transform: uppercase;
  font-size: 1.1em;
}

nav > a:hover {
  text-decoration: none;
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

a.logout-btn:hover {
  transform: unset;
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.team-grid .team-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.partners-grid img,
.partner-logos img {
  width: 180px;
  height: 80px !important;
  object-fit: contain;
}

ul {
  list-style: none;
}

.faq-item,
.contact-info > div,
.contact-form,
.map,
.steps > .step,
.values > ul > li {
  border-radius: 5px;
}

a {
  text-decoration: none;
}

.language-select {
  border-radius: 3px;
  outline: none;
}

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
}

header img {
  position: relative;
  top: unset;
  left: unset;
  max-width: 230px;
}

header .middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header .end-header {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: end;
}

header {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #000091;
  padding: 35px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Media queries pour la responsivité */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px 10px;
    gap: 15px;
  }

  header img {
    max-width: 180px;
  }

  header .middle {
    align-items: center;
    text-align: center;
  }

  header .end-header {
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  header {
    padding: 10px 5px;
    gap: 10px;
  }

  header img {
    max-width: 150px;
  }
}
