.help{
    padding: 50px 0;
}

.help .steps{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.help .steps .step{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.help .steps .step .step-title h2{
    font-weight: bold;
}

.help .steps .step .step-images{
    display: flex;
    gap: 20px;
}

.help .steps .step .step-images .img{
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 12px;
    color: white;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help .steps .step .step-images .img img{
    border-radius: 18px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .help .steps .step .step-images {
        flex-direction: column;
    }
}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}



.toast {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}
.toast.footer{
    display: none;
}

/* Bloc principal */
.toast-inner {
  display: flex;
  align-items: center;
  overflow: hidden;

    width: 70px;
    min-height: 70px;
    padding: 10px;

  background: #2a5699;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

  transition: width 0.45s ease, border-radius 0.45s ease;
}

/* Image */
.toast-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
}

/* Contenu caché au départ */
.toast-body {
  opacity: 0;
  width: 0;
  margin-left: 0;
  overflow: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  color: #fff;
}

/* Bouton */
.toast-btn {
    border-radius: 10px;
    border: none;
    background: #fff;
    color: #2a5699;
    font-size: 20px;
    cursor: pointer;
    margin-left: 12px;
    font-weight: bold;
}

/* État visible */
.toast.show .toast-inner {
  width: 500px;
  border-radius: 16px;
}

/* contenu affiché après expansion */
.toast.show .toast-body {
  opacity: 1;
  width: auto;
  margin-left: 14px;
  transform: translateX(0);
  transition-delay: 0.25s;
}

@media (max-width: 767px) {
    .toast {
        width: 90%;
    }
}

.step-description ul{
    list-style-type: disc;
    margin-left: 2rem;
}
