.step { display: none; }
        .step.active { display: block; }

        .step-indicator {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        position: relative;
        }

        .step-indicator::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        height: 4px;
        background-color: #dee2e6;
        z-index: 0;
        }

        .step-circle {
        position: relative;
        z-index: 1;
        background-color: #dee2e6;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        font-weight: bold;
        color: #6c757d;
        }

        .step-circle.active {
        background-color: #0d6efd;
        color: white;
        }

        .step-circle.completed {
        background-color: #198754;
        color: white;
        }

        .step-label {
        text-align: center;
        margin-top: 5px;
        font-size: 0.9rem;
        }

        .step-item {
        flex: 1;
        text-align: center;
        }

        .overview-content {
            display: flex;
            justify-content: space-between;
            border-radius: 10px;
            border: 1px solid #EEE;
            padding: 30px 20px;
        }
        .overview-content ul {
            margin: 0;
            padding: 0;
            list-style: none;
            max-width: 47%;
            width: 100%;
        }
        .overview-content ul li {
            color: var(--text-color);
            font-family: var(--font-Zain);
            font-size: 15px;
            font-weight: 400;
            display: flex;
            justify-content: space-between;
            line-height: 1;
            position: relative;
            padding: 18px 0 10px;
        }
        .overview-content ul li::after {
            content: "";
            height: 1px;
            width: 100%;
            background: radial-gradient(50% 50% at 50% 50%, #EEE 0%, rgba(238, 238, 238, 0) 100%);
            position: absolute;
            bottom: 0;
            left: 0;
        }

        