.wizard-container { max-width:800px; margin:40px auto; padding:20px; background:#fff; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.1); }
.progress-bar { height:8px; background:#e9ecef; border-radius:4px; margin-bottom:20px; overflow:hidden; }
.progress-fill { height:100%; background:#0077be; width:0; }
.step-indicator { text-align:center; font-weight:bold; margin-bottom:20px; color:#555; }

.options-grid { display:grid; grid-template-columns:1fr 1fr; gap:15px; margin:25px 0; }
.option-card { border:2px solid #e0e0e0; border-radius:10px; padding:15px; cursor:pointer; transition:all 0.2s; }
.option-card.selected { border-color:#0077be; background:#f0f8ff; }
.option-card input[type="radio"] { display:none; }
.option-label { font-weight:bold; display:block; margin-bottom:5px; }
.option-desc { font-size:0.9rem; color:#666; }

.nav-buttons { display:flex; gap:15px; justify-content:space-between; margin-top:30px; flex-wrap:wrap; }
.nav-buttons .btn { flex:1; min-width:100px; text-align:center; }

.time-note { font-style:italic; color:#555; text-align:center; margin:10px 0; }

@media (max-width:600px) {
    .options-grid { grid-template-columns:1fr; }
}