        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
        }

        body {
            direction: rtl;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background: #f8fafc;
            color: #333;
        }

        .page {
            display: flex;
            min-height: 100vh;
        }

        .left-panel {
            width: 100%;
            max-width: 480px;
            background: #ffffff;
            padding: 25px 20px;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            margin: 0 auto;
        }

        .logo-wrap {
            text-align: center;
            margin-bottom: 15px;
        }

        .logo-wrap img {
            width: 180px;
            height: auto;
        }

        .title-main {
            text-align: center;
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 5px;
            color: #1e293b;
        }

        .subtitle {
            text-align: center;
            font-size: 13px;
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .apply-btn {
            width: 100%;
            padding: 16px;
            font-size: 18px;
            border-radius: 12px;
            border: none;
            background: #16a34a;
            color: white;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.1s;
            box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
        }

        .apply-btn:active {
            transform: scale(0.98);
        }

        .footer-text {
            text-align: center;
            margin-top: 30px;
            font-size: 11px;
            color: #94a3b8;
        }

        .right-panel {
            flex: 1;
            background-image: url("pg.jpeg");
            background-size: cover;
            background-position: center;
            display: none;
        }

        @media (min-width: 769px) {
            .right-panel {
                display: block;
            }
        }

        .progress-container {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
            padding: 0 10px;
        }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 25%;
            z-index: 2;
        }

        .step-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f1f5f9;
            color: #94a3b8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            border: 2px solid #e2e8f0;
        }

        .step-text {
            font-size: 11px;
            text-align: center;
            margin-top: 6px;
            color: #94a3b8;
            font-weight: 600;
        }

        .progress-step.active .step-circle {
            border-color: #22c55e;
            color: #22c55e;
            background: #f0fdf4;
        }

        .progress-step.active .step-text {
            color: #22c55e;
        }

        .progress-step.completed .step-circle {
            background: #22c55e;
            border-color: #22c55e;
            color: white;
        }

        .progress-line {
            position: absolute;
            top: 16px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: #e2e8f0;
            z-index: 1;
        }

        h2 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 19px;
            color: #0f172a;
        }

        label {
            margin-top: 15px;
            font-size: 14px;
            display: block;
            font-weight: 600;
            color: #334155;
            margin-bottom: 6px;
        }

        input, select {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            border: 1px solid #cbd5e1;
            background: #f8fafc;
            text-align: center;
            font-size: 16px;
            color: #0f172a;
        }

        .btn-container {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .btn {
            flex: 1;
            padding: 15px;
            background: #22c55e;
            border-radius: 12px;
            border: none;
            color: white;
            font-weight: 700;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-back {
            background: #94a3b8;
        }

        .error {
            color: #ef4444;
            text-align: center;
            margin-top: 10px;
            font-size: 13px;
        }

        #formSection, #step2, #step3, #step4 {
            display: none;
        }

        .spinner {
            border: 4px solid #f1f5f9;
            border-top: 4px solid #22c55e;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .timer-text {
            font-size: 30px;
            font-weight: 800;
            color: #b91c1c;
        }

        .success-checkmark {
            font-size: 60px;
            color: #22c55e;
            display: none;
        }

        .payment-box {
            background: #ffffff;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 20px;
            margin-top: 15px;
            text-align: center;
        }

        .pay-logo {
            width: 100px;
            height: auto;
            margin-bottom: 10px;
        }

        .copy-btn {
            padding: 8px 16px;
            background: #f1f5f9;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            cursor: pointer;
            font-size: 13px;
        }

        .highlight {
            font-weight: 800;
            color: #0f172a;
        }