body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff; /* blanc */
  color: #000000; /* noir */
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  background-color: #000000; /* noir */
  color: #ffffff; /* blanc */
  padding: 20px;
  text-align: center;
  width: 100%;
}

* {
  box-sizing: border-box;
  text-decoration: none;
}


nav {
  background-color: #fff;
  padding: 0 20px;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(159, 162, 177, .8);
  display: flex;
  overflow: hidden;
  overflow-x: auto;
  position: relative;
  justify-content: center;
}

.nav-item {
  color: black;
  font-family: arial, sans-serif;
  padding: 20px;
  margin: 0 6px;
  position: relative;
}

.nav-item:before {
  content: "";
  position: absolute;
  bottom: -6px;
  background-color: #000000;
  height: 5px;
  width: 100%;
  border-radius: 8px 8px 0 0;
  left: 0;
  transition: .3s;
}

.nav-item:not(.is-active):hover:before {
  bottom: 0;
}
.nav-item:not(.is-active):hover {
  color: rgb(68, 23, 203);
}

/* Styl indicateur */
.nav-indicator {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  transition: .4s;
  border-radius: 8px 8px 0 0;
}

main {
  text-align: center;
  padding: 50px 0;
  margin-top: 20px; /* Pour séparer le main de la nav bar */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

/* Styles pour la Hero Image */
.hero {
  position: relative;
  background-image: url(''); /* Remplacez par le chemin réel de votre image */
  background-size: cover; /* L'image couvrira toute la section */
  background-position: center; /* Centrer l'image */
  height: 400px; /* Vous pouvez ajuster la hauteur selon vos préférences */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: white; /* Texte en blanc pour contraster avec l'image */
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Ombre légère pour rendre le texte lisible */
  border-radius: 10px;
}

.hero h1 {
  font-size: 36px; /* Taille du titre */
  margin: 0;
}

.hero p {
  font-size: 18px; /* Taille du texte sous le titre */
}

/* Si vous voulez que la Hero Image prenne toute la largeur et hauteur de l'écran */
.hero {
  height: 100vh; /* 100% de la hauteur de la fenêtre */
}


.integration {
  text-align: center;
  margin-top: 20px;
}

.integration {
  text-decoration: none;
  color: #000000; /* noir */
  font-weight: bold;
  font-size: large;
}

.integration:hover {
  text-decoration: none;
  color: rgb(68, 23, 203);
}

.integration a {
  text-decoration: none;
  border: 1px solid black;
  padding: 10px;
}

.integrations4 {
  text-align: center;
  margin-top: 20px;
}

.integrations4 {
  text-decoration: none;
  color: #000000; /* noir */
  font-weight: bold;
  font-size: large;
}

.integrations4:hover {
  text-decoration: none;
  color: rgb(68, 23, 203);
}

.integrations4 a {
  text-decoration: none;
  border: 1px solid black;
  padding: 10px;
}

footer {
  background-color: #000000; /* noir */
  color: #ffffff; /* blanc */
  text-align: center;
  padding: 20px;
  position: fixed;
  bottom: 0;
  width: 100%;
}
