        /* Toast Notifications */
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
        }
        
        .toast {
            background: #fff;
            border-left: 4px solid #04a65b;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            padding: 15px 20px;
            margin-bottom: 10px;
            min-width: 300px;
            display: flex;
            align-items: center;
            animation: slideIn 0.3s ease;
        }
        
        .toast.error {
            border-left-color: #dc3545;
        }
        
        .toast.success {
            border-left-color: #04a65b;
        }
        
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        .toast i {
            margin-right: 12px;
            font-size: 20px;
        }
        
        .toast.success i { color: #04a65b; }
        .toast.error i { color: #dc3545; }

        /* Enrollment Page Styles */
        .enroll-section {
            padding: 60px 0;
            background: #f8f9fa;
            min-height: calc(100vh - 300px);
        }

        .enroll-box {
            background: #fff;
            border: 1px solid #eaeaea;
            padding: 40px;
        }

        .enroll-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 2px solid #04a65b;
        }

        .enroll-header h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .enroll-header p {
            color: #666;
            font-size: 16px;
        }

        .course-preview {
            background: #f8f9fa;
            padding: 20px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
        }

        .course-preview img {
            width: 120px;
            height: 80px;
            object-fit: cover;
            margin-right: 20px;
        }

        .course-preview h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .course-preview .price {
            font-size: 24px;
            font-weight: 700;
            color: #04a65b;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #000;
        }

        .form-control {
            border: 1px solid #ddd;
            border-radius: 0;
            height: 45px;
            padding: 10px 15px;
            font-size: 14px;
            width: 100%;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            border-color: #04a65b;
            outline: none;
            box-shadow: none;
        }

        .form-control.error {
            border-color: #dc3545;
        }

        .error-message {
            color: #dc3545;
            font-size: 13px;
            margin-top: 5px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .btn-submit {
            background: #04a65b;
            color: #fff;
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background: #145a30;
        }

        .btn-submit:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        .btn-submit.black {
            background: #000;
        }

        .btn-submit.black:hover {
            background: #04a65b;
        }

        /* Progress Steps */
        .progress-steps {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }

        .step {
            display: flex;
            align-items: center;
            color: #999;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: #eaeaea;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 10px;
        }

        .step.active .step-number {
            background: #04a65b;
            color: #fff;
        }

        .step.completed .step-number {
            background: #000;
            color: #fff;
        }

        .step-line {
            width: 60px;
            height: 2px;
            background: #eaeaea;
            margin: 0 15px;
        }

        /* Payment Section */
        .payment-methods {
            margin-bottom: 30px;
        }

        .payment-method {
            border: 2px solid #eaeaea;
            padding: 20px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .payment-method:hover,
        .payment-method.selected {
            border-color: #04a65b;
            background: #f8fff9;
        }

        .payment-method input {
            margin-right: 15px;
            width: 20px;
            height: 20px;
            accent-color: #04a65b;
        }

        .payment-method img {
            height: 30px;
            margin-right: 15px;
        }

        .payment-method h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
        }

        .payment-method p {
            font-size: 13px;
            color: #666;
            margin: 0;
        }

        /* Processing State */
        .processing-box {
            text-align: center;
            padding: 60px 40px;
        }

        .spinner {
            width: 80px;
            height: 80px;
            border: 4px solid #eaeaea;
            border-top-color: #04a65b;
            margin: 0 auto 30px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .processing-box h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .processing-box p {
            color: #666;
            font-size: 16px;
        }

        /* Success State */
        .success-box {
            text-align: center;
            padding: 60px 40px;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            background: #04a65b;
            color: #fff;
            font-size: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
        }

        .success-box h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .success-box p {
            color: #666;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .next-steps {
            background: #f8f9fa;
            padding: 30px;
            text-align: left;
            margin-bottom: 30px;
        }

        .next-steps h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .next-steps ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .next-steps li {
            padding: 10px 0;
            border-bottom: 1px solid #eaeaea;
            display: flex;
            align-items: center;
        }

        .next-steps li:last-child {
            border-bottom: none;
        }

        .next-steps i {
            color: #04a65b;
            margin-right: 15px;
            font-size: 18px;
        }

        /* Motivation Cards for Paid */
        .motivation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .motivation-card {
            background: #fff;
            border-left: 4px solid #04a65b;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .motivation-card i {
            font-size: 30px;
            color: #04a65b;
            margin-bottom: 15px;
        }

        .motivation-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .motivation-card p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        /* Free Course Highlight */
        .free-highlight {
            background: #04a65b;
            color: #fff;
            padding: 30px;
            margin-bottom: 30px;
            text-align: center;
        }

        .free-highlight i {
            font-size: 50px;
            margin-bottom: 15px;
        }

        .free-highlight h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .free-highlight p {
            font-size: 16px;
            opacity: 0.9;
            margin: 0;
        }

        @media (max-width: 768px) {
            .enroll-box {
                padding: 20px;
            }
            
            .step-line {
                width: 30px;
            }
            
            .course-preview {
                flex-direction: column;
                text-align: center;
            }
            
            .course-preview img {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }