        .container {
            max-width: 600px;
            margin: initial;
        }

        .steps-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            height: fit-content;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
            width: 100px;
        }

        .step-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            transition: all 0.3s;
        }

        .step.active .step-circle {
            background-color: #3171ae;
            color: white;
        }

        .step.completed .step-circle {
            background-color: #3171ae;
            color: white;
        }

        .step-label {
            color: #666;
            font-size: 14px;
        }

        .step.active .step-label {
            color: #bce0f1;
            font-weight: bold;
        }

        .progress-line {
            position: absolute;
            height: 4px;
            background-color: #e0e0e0;
            top: 15px;
            left: 50;
            right: 50;
            z-index: 1;
        }

        .progress {
            height: 100%;
            background-color: #3171ae;
            transition: all 0.3s;
            width: 0;
        }
       .navigation-buttons {
            margin-top: 50px;
            text-align: center;
        }
