/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables pour les couleurs */
:root {
  --primary-color: #4a7c59; /* Vert foncé - couleur principale */
  --secondary-color: #f4b942; /* Jaune doré - couleur d'accent */
  --text-color: #333333;
  --light-color: #f8f8f8;
  --header-height: 80px;
}

/* Style du header */
.header {
  background-color: var(--light-color);
  height: var(--header-height);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  transition: all 0.3s ease;
}
.btn-primary,.btn-secondary,.btn-default {color:#ffffff;}
.btn-link{background:transparent;}
#jRPiuYyjpxDUnT7W6ROZCT79 >h2 {margin-top:20px;}
