* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #cfe9f6;
}





/* ── Carousel ── */

#carousel-container {
  max-width: 1100px;  /* ajuste selon la largeur exacte de ton bloc central */
  margin: 0 auto 0 auto;  /* centré horizontalement */
  padding: 0;
}

#carousel-container .carousel {
  position: relative;
  width: 100%;
}

#carousel-container .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ── Slides ── */
#carousel-container .carousel-item {
  display: none;
  position: relative;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

#carousel-container .carousel-item.active {
  display: block;
}

/* ── Animation de transition ── */
#carousel-container .carousel-item-next,
#carousel-container .carousel-item-prev {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Position de départ du slide entrant */
#carousel-container .carousel-item-next {
  transform: translateX(100%); /* arrive de gauche */
}

#carousel-container .carousel-item-prev {
  transform: translateX(-100%); /* arrive de droite */
}

/* Pendant la transition */
#carousel-container .carousel-item-next.carousel-item-start,
#carousel-container .carousel-item-prev.carousel-item-end {
  transform: translateX(0); /* se place au centre */
}

/* Slide sortant */
#carousel-container .active.carousel-item-start {
  transform: translateX(-100%); /* part à droite */
}

#carousel-container .active.carousel-item-end {
  transform: translateX(100%); /* part à gauche */
}

/* ── Images ── */
#carousel-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Flèches précédent / suivant ── */
#carousel-container .carousel-control-prev,
#carousel-container .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}

#carousel-container .carousel-control-prev { left: 0; }
#carousel-container .carousel-control-next { right: 0; }

#carousel-container .carousel-control-prev-icon,
#carousel-container .carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

#carousel-container .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

#carousel-container .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* ── Indicateurs (points en bas) ── */
#carousel-container .carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 10;
}

#carousel-container .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}

#carousel-container .carousel-indicators button.active {
  background: white;
}





/* Centre le bloc sur toute la page */
.page-wrapper {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	flex-direction: column; /* en colonne */
	align-items: center;
	gap: 20px; /* espace entre carousel et bloc central */
	max-width: 1100px;
	margin: 0 auto;
}

/* Carte principale */
.innova-card {
    width: 100%;
    max-width: 1100px;
    background: #f7f6f3;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Bandeau bleu */
.innova-header {
    background: #1b5fa7;
    color: #fff;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.innova-header h1 {
    font-size: 22px;
    margin-bottom: 6px;
}

.innova-header p {
    font-size: 14px;
    opacity: 0.9;
}

.btn-primary {
    background: #ffffff;
    color: #1b5fa7;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

/* Contenu */
.innova-content {
    padding: 30px;
}

.description {
    margin-bottom: 30px;
    font-size: 14px;
    color: #333;
}

/* Étapes */
.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.step-number {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1b5fa7;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.step h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.step p {
    font-size: 13px;
    color: #555;
}

/* Séparateurs */
.separator {
    width: 1px;
    height: 50px;
    background: #ddd;
}

/* Note */
.note {
    font-size: 12px;
    color: #777;
    font-style: italic;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .innova-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps {
        flex-direction: column;
    }

    .separator {
        display: none;
    }
}
