:root{}

/* Header global */
.header {
  border-bottom: 4px solid #f2c94c; /* ligne orange */
}

/* Bandeau supérieur blanc */
.header-top {
  background-color: #ffffff;
}

/* Contenu aligné */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Logo + nom entreprise */
.brand {
  display: flex;
  align-items: center;
}

.brand img {
  max-width: 140px;
  height: auto;
}

.brand .title {
  margin-left: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a5ea8; /* bleu corporate */
}

/* Navigation */
.nav a {
  margin-left: 20px;
  font-weight: 500;
  color: #0a5ea8;
  text-decoration: none;
}

.nav a:hover {
  text-decoration: underline;
}
