document.addEventListener("DOMContentLoaded", function() { var currentStep = 0; var steps = document.querySelectorAll(".step"); function showStep(stepIndex) { steps.forEach(function(step, index) { step.style.display = index === stepIndex ? "block" : "none"; }); } showStep(currentStep); document.querySelectorAll(".next-step").forEach(function(button) { button.addEventListener("click", function() { currentStep++; showStep(currentStep); }); }); document.querySelectorAll(".prev-step").forEach(function(button) { button.addEventListener("click", function() { currentStep--; showStep(currentStep); }); }); });