.angie-multistep-form-container {
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    font-family: sans-serif;
}
.angie-step { display: none; animation: fadeIn 0.5s; }
.angie-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.angie-progress-bar { background: #eee; height: 8px; border-radius: 4px; margin-bottom: 20px; }
.angie-progress { background: #0073aa; height: 100%; border-radius: 4px; transition: width 0.3s; }
.angie-step-indicators { display: flex; justify-content: space-between; margin-bottom: 30px; }
.angie-step-indicator { width: 30px; height: 30px; border-radius: 50%; background: #eee; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.angie-step-indicator.active { background: #0073aa; color: #fff; }
.angie-field { margin-bottom: 20px; }
.angie-field label { display: block; margin-bottom: 5px; }
.angie-field input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; }
button { padding: 10px 20px; background: #0073aa; color: #fff; border: none; border-radius: 4px; cursor: pointer; }
button:hover { background: #005177; }