body {
  margin: 0;
  background-color: #000000;
  color: #ccc;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 5vh;
  padding: 0px 10px;
  padding-top: 60px
}

.navbar {
  position: absolute;
  pointer-events: unset;
  top: 0px;
  left: 183px;
  width: 80%;
  z-index: 1000;
  height: 60px; /* ajuste la hauteur ici */
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  padding: 0 0px;
  box-shadow: 0 5px 5px rgba(255, 0, 0, 0.527); /* optionnel : ombre élégante */
}

.image-position {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh; /* toute la hauteur de l'écran */
}

.image-position img {
  position: relative;
  width: 450px;
  right: -380px;
  height: auto;
}

.header-image {
  width: 50%;
  height: auto;
  display: block;
  border-bottom: 2px solid #222;
}

/* Comparatif */
.comparison-table {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.row {
  display: flex;
  border-bottom: 1px solid #222;
}

.cell {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

.cell.left {
  text-align: left;
  background-color: #2a2a2a;
  font-weight: bold;
}

.row.header .cell {
  font-weight: bold;
  background-color: #1f1f1f;
}

.cell.basic {
  background-color: gray;
  color: white;
}

.cell.premium {
  background-color: purple;
  color: white;
}

.cell.premium-plus {
  background-color: black;
  color: gold;
}

.row:nth-child(odd) {
  background-color: #181818;
}

/* Footer */
.footer {
  background-color: #00000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
}

.footer-left .logo {
  height: 60px;
}

.footer-center {
  text-align: center;
  flex: 2;
}

.footer-center .big-logo {
  display: block;
  margin: 0 auto 10px;
  height: 80px;
}

.fragmentor {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.fragmentor i {
  margin-right: 5px;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.footer-right a {
  color: #ccc;
  font-size: 1.5em;
  text-decoration: none;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}


.footer {
  background-color: #00000000;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-content .big-logo {
  height: 80px;
  width: auto;
}

.footer-content .copyright {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

.footer-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.footer-icons a {
  color: #ccc;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.footer-icons a:hover {
  transform: scale(1.2);
}

.logo {
  height: 60px; /* Réduit la hauteur */
  width: 75px;  /* Garde les proportions */
  margin-left: 35px; /* Optionnel : pour l'espacement */
}