        /* Multi-Step Form Styles */
        .step-progress {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }

        .step-progress::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 3px;
            background: #e0e0e0;
            z-index: -1;
        }

        .step-item {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e0e0e0;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .step-item.active .step-circle {
            background: #ff6b00;
            color: white;
            box-shadow: 0 0 15px rgba(255, 107, 0, 0.6);
            transform: scale(1.1);
        }

        .step-item.completed .step-circle {
            background: #28a745;
            color: white;
            animation: checkMark 0.5s ease;
        }

        .step-item.completed .step-circle::after {
            content: '';
            position: absolute;
            font-size: 20px;
            font-weight: bold;
        }

        @keyframes checkMark {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.2);
            }

            100% {
                transform: scale(1);
            }
        }

        .step-label {
            font-size: 13px;
            color: #666;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .step-item.active .step-label {
            color: #ff6b00;
            font-weight: bold;
            font-size: 14px;
        }

        .step-item.completed .step-label {
            color: #28a745;
        }

        /* Form Step Animation */
        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
            animation: fadeInUp 0.5s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Step Navigation Buttons */
        .step-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            gap: 15px;
        }

        .btn-step {
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-step::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-step:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-next {
            background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
            color: white;
            border: none;
        }

        .btn-next:hover:not(:disabled) {
            background: linear-gradient(135deg, #ff8533 0%, #ffa366 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
        }

        .btn-next:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            background: #999;
        }

        .btn-prev {
            background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
            color: white;
            border: none;
        }

        .btn-prev:hover {
            background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
        }

        /* Section Headers */
        .section-header {
            background: linear-gradient(135deg, #fff8f3 0%, #ffe8d9 100%);
            border-left: 5px solid #ff6b00;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            box-shadow: 0 2px 8px rgba(255, 107, 0, 0.1);
            transition: all 0.3s ease;
        }

        .section-header:hover {
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
            transform: translateX(-3px);
        }

        .section-header h5 {
            margin: 0;
            color: #ff6b00;
            display: flex;
            align-items: center;
            font-weight: bold;
        }

        .section-header i {
            font-size: 1.4rem;
            margin-left: 10px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        /* Training Entry Styles */
        .training-entry {
            background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
            border: 2px solid #dee2e6;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .training-entry::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #ff6b00 0%, #ff8533 100%);
            border-radius: 12px 0 0 12px;
        }

        .training-entry:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
            transform: translateY(-3px);
            border-color: #ff6b00;
        }

        .training-entry h6 {
            color: #ff6b00;
            font-weight: bold;
            margin-bottom: 15px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .step-label {
                font-size: 11px;
            }

            .step-circle {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

            .btn-step {
                padding: 10px 20px;
                font-size: 14px;
            }

            .section-header {
                padding: 12px 15px;
            }

            .section-header h5 {
                font-size: 16px;
            }
        }

        /* Loading Overlay */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
        }

        .loading-overlay.active {
            display: flex;
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 5px solid #fff;
            border-top: 5px solid #ff6b00;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
