/* Hide all steps except the first one */
.form-step { 
    display: none; 
    max-width: 600px;
    margin: auto;
    text-align: center;
}
.form-step.step-1 { display: block; }

button {
    padding: 10px 15px;
    margin: 10px;
    border: none;
    cursor: pointer;
    background: #0073aa;
    color: white;
}
button:hover {
    background: #005f8d;
}
