/* ----- Introduction ---------------------*/
.page-intro {
  width: 90vw;
  max-width: 900px;
  margin: 8vh auto 3vh auto;
  color: #fff;
  text-align: left;
  font-family: "Figtree", sans-serif;
}
.page-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2rem);
  margin: 6vw 0 4vw 0;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.02em;
}
.page-intro h3 {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  margin-bottom: 0.5em;
  font-family: "Libre Baskerville", serif;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.page-intro p {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 400;
  opacity: 0.85;
  margin: 0;
  text-align: justify;
}
section.mentions-legales-content {
margin-top: 5 vh;

}

.button-container {
  text-align: center;
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.feedback-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  font-family: "Figtree", sans-serif;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.feedback-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.feedback-button span {
  position: relative;
  display: inline-block;
}

/* Animation de soulignement */
.feedback-button span::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.feedback-button:hover span::before {
  transform: scaleX(1);
}

/* Style de la flèche */
.feedback-button .arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.4s ease;
}

.feedback-button:hover .arrow-icon {
  transform: translateX(5px);
}