/* Styles pour le footer commun à toutes les pages */
@import url('styleguide.css');

/* Footer */
.step-footer {
  border-top: 2px solid var(--black);
  padding: 40px;
  margin-top: 100px;
}

.step-footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.step-footer-content img {
  max-width: 349px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .step-footer {
    padding: 20px;
  }
  
  .step-footer-content {
    padding: 0;
    max-width: 100%;
  }
  
}

