body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fef6e4;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  padding: 2em;
  background-color: #d9b48a;
  text-align: center;
}

h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.intro {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

main {
  padding: 2em;
}

.temoignage-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.temoignage-form label {
  font-weight: bold;
}

.temoignage-form input,
.temoignage-form textarea {
  padding: 0.8em;
  font-size: 1em;
  border: 1px solid #aaa;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.temoignage-form textarea {
  resize: vertical;
}

.temoignage-form button {
  background-color: #c1926f;
  color: white;
  font-size: 1.1em;
  padding: 0.8em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.temoignage-form button:hover {
  background-color: #a57852;
}

/* preuve */

.info-bulle {
  cursor: help;
  font-size: 1em;
  margin-left: 0.4em;
}

/* footer */

footer {
  background-color: #e6d4bd;
  text-align: center;
  padding: 1.5em;
  margin-top: 3em;
}

.footer-img {
  width: 120px;
  margin-bottom: 1em;
}

.footer-links {
  margin-top: 1em;
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #5b3921;
  font-weight: bold;
}

/* responsive */

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.6em;
  }

  .intro {
    padding: 0 1em;
    font-size: 1em;
  }

  main {
    padding: 1.2em;
  }

  .temoignage-form {
    padding: 0 1em;
    gap: 1em;
  }

  .temoignage-form input,
  .temoignage-form textarea,
  .temoignage-form button {
    font-size: 1em;
  }

  .temoignage-form button {
    width: 100%;
    text-align: center;
  }

  footer {
    padding: 2em 1em;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.6em;
  }

  .footer-img {
    width: 90px;
  }
}
