/* common.css */

/* Réinitialisation des styles par défaut */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #757474;
}

header {
  background-color: #000F5B;
  padding: 10px 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-section h1 {
  margin: 0;
}

.right-section {
  display: flex;
}

.right-section a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.page {
  text-align: center;
}

h1 {
  font-size: 40px;
  margin-bottom: 30px; /* Réduire la marge entre h1 et la div.content-container */
}

.image-container {
  margin: 10px 0; /* Réduire la marge */
  border-radius: 10px;
  overflow: hidden;
}

.texte-sous-image {
  font-size: 20px;
}

.boutons-container {
  display: flex;
  justify-content: space-around;
  margin-top: 20px; /* Réduire la marge */
}

.bouton {
  background-color: #7FBF7F;
  color: #fff;
  padding: 10px 15px; /* Réduire le padding */
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.bouton:hover {
  background-color: #fff;
  color: #7FBF7F;
}

.content-container {
  display: flex;
}

.text-container {
  margin-left: 10px; /* Réduire la marge */
}

.round-box {
  background-color: #D4AF37;
  color: #fff;
  padding: 15px; /* Réduire le padding */
  border-radius: 10px;
}

.round-box h3 {
  font-weight: bold;
  margin-top: 0;
}

.boutons-container {
  display: flex;
  justify-content: space-around;
  margin-top: 20px; /* Réduire la marge */
}

.bouton {
  background-color: #D4AF37;
  color: #fff;
  padding: 10px 15px; /* Réduire le padding */
  margin-top: 20px;
  border: none;
  margin: 0 10px; /* Ajouter une marge horizontale de 10px */
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.bouton:hover {
  background-color: #c50000;
  color: #1232ad;
}

.footer {
  background-color: #b3aeae;
  color: #fff;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  bottom: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.left-content, .right-content {
  flex-grow: 1;
}

.right-content {
  text-align: right;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.boutons-container a {
  text-decoration: none;
  color: white;
  margin-top: 20px;

}

.right-content .image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.right-content img {
  width: 80px;
  height: 80px;
  margin-bottom: 5px;
}

.right-content p {
  margin: 0;
}

.centered-text {
  text-align: center;
}

.page {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centrer les éléments verticalement */
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centrer les éléments verticalement */
}
