        .stepper-container {
            border: 1px solid #9A9A9A;
            border-radius: 4px;
            padding: 12px 20px;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .stepper {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            position: relative;
            width: 100%;
            max-width: 540px;
        }

        .stepper-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            flex: 1;
            z-index: 2;
        }

        .stepper-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: white;
            border: 1px solid #9A9A9A;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 400;
            color: #333333;
            position: relative;
            z-index: 3;
        }

        .stepper-circle.active {
            background-color: #181D31;
            border-color: #181D31;
            color: white;
        }

        .stepper-circle.completed {
            background-color: #2E8540;
            border-color: #2E8540;
            color: white;
        }

        .stepper-circle.completed i {
            font-size: 14px;
        }

        .stepper-label {
            margin-top: 8px;
            font-size: 14px;
            color: #333333;
            text-align: center;
            white-space: nowrap;
        }

        .stepper-line {
            position: absolute;
            top: 16px;
            left: calc(50% + 16px);
            right: calc(-50% + 16px);
            height: 1px;
            background-color: black;
            z-index: 1;
            transform: translateY(-50%);
        }

        .stepper-item:last-child .stepper-line {
            display: none;
        }

        /* Responsive: hide "your" on mobile */
        @media (max-width: 990px) {
            .hide-mobile {
                display: none;
            }
            
            .stepper-container {
                padding: 12px 10px;
            }

            .stepper-label {
                font-size: 12px;
            }
        }