* {
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    margin: 0;
    background: #d3c5e2;
    color: #2d083d;
}

/* Header */
.header {
    background: #6a2960;
    color: rgb(234, 231, 235);
    padding: 20px;
    text-align: center;
}

/* Progress Steps */
.progress {
    display: flex;
    justify-content: center;
    padding: 15px;
    gap: 10px;
    flex-wrap: wrap;
}

.step {
    padding: 6px 12px;
    border-radius: 20px;
    background: #e0e0e0;
    font-size: 13px;
}

.step.active {
    background: #78219e;
    color: white;
}

/* Container */
.container {
    max-width: 700px;
    background: white;
    margin: 20px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Form Sections */
.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

/* Inputs */
input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

textarea {
    resize: none;
    height: 100px;
}

/* Navigation Buttons */
.navigation {
    display: flex;
    justify-content: space-between;
}

button {
    padding: 10px 20px;
    background: #2b0640;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:disabled {
    background: #aaa;
    cursor: not-allowed;
}