/* Conteneur du header */
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo à gauche */
.header-logo {
  flex: 0 0 auto;
  /* ne change pas de taille */
}

.header-logo img {
  width: 125px;
  height: auto;
}

/* Titre centré */
.header-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.header-title h1 {
  color: #24B2F2;
  text-transform: uppercase;
  margin: 0;
  font-size: 28px;
}

/* Bouton contact à droite */
.header-contact {
  flex: 0 0 auto;
  margin-right: 20px;
}

.btn-contact {
  background-color: #2ea9f4;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.btn-contact:hover {
  background-color: #238fd6;
}