.elig-form-container {
      background: #FFFFFF;
      max-width: 500px;
      margin: 40px auto;
      padding: 60px 40px;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    .elig-form-title {
      background: #10367A;
      color: #D3D3D3;
      padding: 15px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      text-align: center;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .elig-form-subtitle {
      text-align: center;
      font-size: 0.9rem;
      color: #000000;
      margin: 40px 0 40px;
    }

    .elig-form-question {
      font-weight: bold;
      margin: 50px 0 30px;
      text-align: center;
      font-size: 1.2rem;
      color: #000000;
    }

    .elig-form-options {
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
      margin-bottom: 40px;
    }

    .elig-form-option {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      border: 2px solid #D3D3D3;
      border-radius: 8px;
      cursor: pointer;
      background: #D3D3D3;
      font-weight: bold;
      width: 250px;
      justify-content: center;
      transition: all 0.3s ease;
      color: #000000;
    }

    .elig-form-option.selected {
      border-color: #10367A;
      background-color: #FE5716;
      color: #FFFFFF;
    }

    .elig-form-button-group {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-top: 50px;
      margin-bottom: 30px;
    }

    .elig-form-button {
      flex: 1;
      padding: 14px;
      background: #10367A;
      color: #FFFFFF;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
    }

    .elig-form-footer {
      font-size: 0.8rem;
      text-align: center;
      margin-top: 30px;
      color: #000000;
    }

    .elig-form-footer strong {
      font-weight: bold;
    }

    .elig-form-input {
      width: 100%;
      padding: 12px;
      font-size: 1rem;
      border-radius: 6px;
      border: 1px solid #D3D3D3;
      box-sizing: border-box;
      margin-bottom: 70px;
      color: #000000;
    }

    .elig-form-confirmation {
      display: none;
      text-align: center;
      font-size: 1.1rem;
      color: #10367A;
      margin-top: 100px;
      margin-bottom: 100px;
    }

    /* Vue "fenêtre" fixe qui ne scrolle pas la page */
    .elig-form-viewport {
      position: relative;
      overflow: hidden;
      height: 520px;
      /* hauteur fixe du cadre (ajuste si besoin) */
      border-radius: 12px;
    }

    /* La piste qui contient toutes les étapes, animée verticalement */
    .elig-form-track {
      position: relative;
      transition: transform .45s ease;
      will-change: transform;
    }

    /* Chaque étape occupe exactement la hauteur du viewport */
    .elig-form-step {
      height: 520px;
      /* même valeur que .elig-form-viewport */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      /* centre la question verticalement */
      padding: 24px;
      box-sizing: border-box;
    }

    /* Sécurité : seules l'étape active reçoit les interactions */
    .elig-form-step {
      pointer-events: none;
      opacity: .96;
    }

    .elig-form-step.active {
      pointer-events: auto;
      opacity: 1;
    }


    @keyframes slideIn {
      from {
        transform: translateY(30px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }