
        /* body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 20px;
            background: linear-gradient(to right, #f7f8fc, #e2e3f3);
        }

        .container {
            max-width: 700px;
            margin: 0 auto;
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            animation: fadeIn 1s ease;
        } */

        h1 {
            text-align: center;
            font-size: 24px;
            color: #333;
            margin-bottom: 25px;
        }

        .progress-container {
            position: relative;
            margin: 30px 0;
        }

        .progress-bar {
            position: relative;
            height: 8px;
            background: #d3d3d3;
            border-radius: 4px;
        }

        .progress {
            height: 100%;
            background: #4caf50;
            width: 0;
            border-radius: 4px;
            transition: width 0.5s ease;
        }

        .steps {
            display: flex;
            justify-content: space-between;
            position: absolute;
            top: -20px;
            width: 100%;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-top: 7px;
        }

        .step span {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #d3d3d3;
            color: white;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .step.completed span {
            background: #4caf50;
            transform: scale(1.1);
        }

        .step.completed p {
            color: #4caf50;
            font-weight: bold;
        }

        .status-message {
            margin-top: 100px;
            text-align: center;
            font-size: 16px;
            color: #444;
            padding: 10px;
            background: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }