body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  background-color: #EDEFF4;
  color: #0F3549;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.menu-logo img {
  height: 40px;
}

.menu-lang .lang-link {
  color: #0F3549;
  font-family: 'Chillax', sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-image-container img.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
  z-index: 0;
}

.hero-image-container h1 {
  position: relative;
  z-index: 1;
  color: white;
  font-family: 'Chillax', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  margin: 0 0 15px 0;
}

.back-button {
  position: relative;
  z-index: 1;
  background-color: #0F3549;
  color: white;
  font-family: 'Chillax', sans-serif;
  padding: 10px 20px 10px 26px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.back-button::before {
  content: '‹';
  font-size: 1.2rem;
  margin-right: 10px;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.back-button:hover {
  background-color: #0c2a3a;
}

.intro {
  font-size: 1rem;
  text-align: center;
  margin: 20px auto 10px auto;
  background-color: #EDEFF4;
}

.contact-form {
  padding: 10px 20px;
  background-color: #EDEFF4;
}

/* Centrage générique du snippet Zoho, quel que soit l'ID */
.zoho-form-embed { width: 100%; }
.zoho-form-embed > div { display: flex; justify-content: center; }
.zoho-form-embed iframe { display: block; margin: 0 auto; border: 0; max-width: 100%; }

		.disclaimer {
			background-color: #0F3549;
			padding-top: 20px;
			text-align: left;
			font-size: 8px;
			color: #white;
		}

  		.footer {
			background-color: #0F3549;
			color: white;
			text-align: left;
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
			margin-top: 75px;
			padding-top: 20px;
			padding-left: 15%;
			padding-right: 15%;
			padding-bottom: 20px;
			font-size: 14px;
		}

		.footer-column {
			flex: 1; /* Donne à chaque colonne la possibilité de grandir de manière égale */
			margin-top: 10px;
			min-width: 200px; /* largeur minimale pour chaque colonne pour la responsivité */
		}

		.footer h3 {
			margin-top: 0;
			font-weight: 600;
		}

		.footer ul {
			list-style-type: none;
			padding: 0;
		}

		.language {
			color: #39677A;
			text-decoration: none;
		}

		.language a {
			color: #0F3549;
		}

		.language a:hover {
			color: #39677A;
		}

		.footer a {
  			color: white;
  			text-decoration: underline;
			}
		
		.footer a:hover {
			text-decoration: none;
			}