.soleil-reception {
  max-width: 720px;
  margin: 80px auto;
  padding: 40px;
  background: #111;
  color: #fff;
  border-radius: 20px;
}

.soleil-reception__message {
  margin-bottom: 32px;
  line-height: 1.8;
}

.soleil-reception__choices {
  display: grid;
  gap: 12px;
}

.soleil-reception__choices button,
.soleil-reception__step a {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: 0.25s;
}

.soleil-reception__choices button:hover,
.soleil-reception__step a:hover {
  background: #fff;
  color: #111;
}

.soleil-reception__step {
  display: none;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.25);
  line-height: 1.8;
}

.soleil-reception__step.is-active {
  display: block;
  animation: soleilReceptionFade 0.35s ease;
}

@keyframes soleilReceptionFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}