.carrousel-section {
  position: relative;
  padding: 60px 0;
  background-color: #f8f9fa;
}

.container-carrousel {
  display: flex;
  align-items: center;
  gap: 40px;
}

.left_steps {
  flex: 1;
  padding-right: 40px;
}
.left_steps .carrousel-title {
  font-weight: bold;
  color: var(--dark-blue);
  margin-bottom: 1.5em;
  font-size: 2.5em;
  line-height: 1.2;
}
.left_steps .carrousel-title span {
  color: var(--green);
}
.left_steps img {
  max-width: 100%;
  height: auto;
}

.right-steps {
  flex: 1;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-carousel {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card {
  display: none !important;
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  padding: 2em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s, transform 0.4s;
}

.card.active {
  display: block !important;
  opacity: 1;
  z-index: 3;
  transform: translateY(0) scale(1);
  animation: fadeInUp 0.4s;
}

.card.next {
  display: none !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.card p {
  font-family: Arial;
  font-style: italic;
  color: rgb(0, 0, 26);
  margin: 1em 0;
  line-height: 1.6;
}

.card cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: black;
}

.card .icon-guillemet {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  height: auto;
}

.card-controller {
  position: static;
  margin-top: 20px;
  display: flex;
  gap: 20px;
  z-index: 10;
  justify-content: center;
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: var(--dark-blue);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 1.7rem;
  padding: 0;
  text-align: center;
}

.carousel-arrow p {
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

@media screen and (max-width: 992px) {
  .container-carrousel {
    flex-direction: column;
  }
  .left_steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .card {
    max-width: 100%;
  }
}