        /* Enhanced and organized CSS */
        :root {
            --primary-color: #607D8B;
            --secondary-color: #739fb5;
            --accent-color: #f5633e;
            --success-color: #8BC34A;
            --text-color: #333;
            --light-bg: #f8f8f8;
            --card-shadow: 0px 0px 5px 0px rgb(54 45 50 / 29%);
        }
        
        body {
            font-family: 'Nunito Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Maven Pro', sans-serif;
            font-weight: 700;
            margin-top: 0;
        }
		
		 body a {
			color: #1e78c5;
		}
        
        img.thumbnail2 {
            display: inline-block;
            box-shadow: var(--card-shadow);
            border-radius: 14px !important;
            padding: 5px;
            background: var(--light-bg);
            transition: transform 0.3s ease;
            margin-bottom: 15px;
        }
        
        img.thumbnail2:hover {
            transform: translateY(-5px);
        }
        
        pre {
            background-color: var(--primary-color);
            border: 1px solid #4e646e;
            color: white !important;
            border-radius: 4px;
            padding: 15px;
            overflow-x: auto;
        }
        
        .breadcrumb2, .breadcrumb3 {
            display: block;
            padding: 25px 20px;
            margin: 25px 0;
            list-style: none;
            border-radius: 8px !important;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
			text-align: left;
        }
        
        .breadcrumb2 {
            background-color: #f3f6f9;
            border-left: 8px var(--secondary-color) solid;
        }
        
        .breadcrumb3 {
            background-color: #fdffff;
            border-left: 8px var(--success-color) solid;
        }
        
        .breadcrumb2:hover, .breadcrumb3:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .panel-default>.panel-heading {
            color: #dadada;
            background-color: var(--primary-color);
            border-color: #ddd;
        }
        
        .form-control {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            padding: 12px 15px;
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .3);
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #66afe9;
            box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
        }
        
        textarea.form-control {
            min-height: 150px;
            font-family: monospace;
            font-size: 13px;
        }
        
        .btn {
            border-radius: 4px;
            padding: 10px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-info {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .btn-info:hover {
            background-color: #5d8aa5;
            border-color: #5d8aa5;
        }
        
        .btn-primary {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
        }
        
        .btn-primary:hover {
            background-color: #e05532;
            border-color: #e05532;
        }
        
        .modal-content {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }
        
        .modal-header {
            background-color: var(--primary-color);
            color: white;
            border-bottom: none;
            padding: 15px 20px;
        }
        
        .modal-title {
            font-weight: 700;
        }
        
        .panel-faq .panel-heading {
            padding: 0;
            border-bottom: none;
        }
        
        .panel-faq .panel-heading a {
            display: block;
            padding: 15px;
            color: var(--text-color);
            text-decoration: none;
        }
        
        .panel-faq .panel-title {
            font-size: 18px;
        }
        
        .panel-faq .panel-body {
            padding: 20px;
            background-color: #f9f9f9;
            border-top: 1px solid #eee;
        }
        
        .line {
            border-color: #eee;
            margin: 30px 0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .breadcrumb2, .breadcrumb3 {
                padding: 20px 15px;
            }
            
            .form-control {
                padding: 10px 12px;
            }
        }
        
        /* Animation for important elements */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        /* Highlight sections */
        .highlight-box {
            border-left: 4px solid var(--accent-color);
            padding-left: 15px;
            margin: 20px 0;
        }
        
        .feature-list {
            padding-left: 20px;
        }
        
        .feature-list li {
            margin-bottom: 8px;
            position: relative;
        }
        
        .feature-list li:before {
            content: "✓";
            color: var(--success-color);
            font-weight: bold;
            margin-right: 10px;
        }
        
        /* Command box styling */
        .command-box {
            position: relative;
            margin: 15px 0;
        }
        
        .command-box .copy-btn {
            position: absolute;
            right: 10px;
            top: 10px;
            background: rgba(255,255,255,0.8);
            border: none;
            border-radius: 3px;
            padding: 3px 8px;
            font-size: 12px;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .command-box:hover .copy-btn {
            opacity: 1;
        }
        
        /* Alert styles */
        .alert {
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid transparent;
            border-radius: 4px;
        }
        
        .alert-success {
            color: #3c763d;
            background-color: #dff0d8;
            border-color: #d6e9c6;
        }
        
        .alert-danger {
            color: #a94442;
            background-color: #f2dede;
            border-color: #ebccd1;
        }
        
        /* Pricing section */
        .pricing-section {
            background-color: #f9f9f9;
            padding: 40px 0;
        }
        
        .pricing-card {
            background: white;
            border-radius: 8px;
            box-shadow: var(--card-shadow);
            padding: 30px;
            margin-bottom: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .pricing-card .price {
            font-size: 36px;
            font-weight: 700;
            color: var(--accent-color);
            margin: 20px 0;
        }
        
        /* Step indicators */
        .step {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .modal-title {
			color: #fff;
		}
        .step-number {
            background-color: var(--primary-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: bold;
        }
        
        .step-content {
            flex: 1;
        }
		
		/* Add this to your existing CSS */

/* Payment Methods Section */
.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
}

.payment-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.payment-method i {
    margin-right: 8px;
    font-size: 18px;
}

/* PayPal Button */
.payment-paypal {
    background: linear-gradient(135deg, #009cde 0%, #012169 100%);
    border: 1px solid #0070ba;
}

.payment-paypal:hover {
    background: linear-gradient(135deg, #0085c3 0%, #011a5e 100%);
}

/* Skrill Button */
.payment-skrill {
    background: linear-gradient(135deg, #8dc63f 0%, #6ba22e 100%);
    border: 1px solid #7cb531;
}

.payment-skrill:hover {
    background: linear-gradient(135deg, #7db235 0%, #5a8f25 100%);
}

/* Crypto Button */
.payment-crypto {
    background: linear-gradient(135deg, #8247e5 0%, #5e32a8 100%);
    border: 1px solid #6f42c1;
}

.payment-crypto:hover {
    background: linear-gradient(135deg, #763bd9 0%, #532999 100%);
}

/* Buy Now Button Enhancements */
.btn-buy-now {
    position: relative;
    overflow: hidden;
    padding: 12px 30px;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(239, 108, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-buy-now:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f5633e, #f99157);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(239, 108, 0, 0.6);
}

.btn-buy-now:hover:before {
    background: linear-gradient(45deg, #f99157, #f5633e);
}

.btn-buy-now:active {
    transform: translateY(1px);
}

/* Whatsapp Button */
.whatsapp-contact {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    margin: 15px 0;
}

.whatsapp-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-contact i {
    margin-right: 10px;
    font-size: 20px;
}

/* License Price Badge */
.license-price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f5633e 0%, #f99157 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0;
    box-shadow: 0 4px 10px rgba(245, 99, 62, 0.3);
}

/* Payment Icons */
.payment-icon {
    font-size: 24px;
    margin: 0 8px;
    vertical-align: middle;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #ffffff;
    opacity: 1;
}

/* System Requirements CSS */
.system-requirements {
    background: #f9f9f9;
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.requirements-box {
    background: #fff;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.requirements-box h3 {
    color: #2a3f54;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
}

.requirements-box h3 i {
    margin-right: 10px;
    color: #3498db;
}

.req-list {
    padding-left: 20px;
}

.req-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.req-list code {
    background: #f5f5f5;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
}

.table {
    margin-bottom: 0;
}

.table th {
    background: #2a3f54;
    color: #fff;
}

.table-bordered th, 
.table-bordered td {
    border: 1px solid #ddd;
}
