            .ls-pricing-table {
                display: flex;
                flex-wrap: wrap;
                gap: 20px;
                justify-content: center;
                margin: 30px 0;
            }
            .ls-pricing-card {
                background: #fff;
                border: 2px solid #e0e0e0;
                border-radius: 12px;
                padding: 30px;
                text-align: center;
                min-width: 280px;
                max-width: 320px;
                flex: 1;
                transition: transform 0.2s, box-shadow 0.2s;
            }
            .ls-pricing-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            }
            .ls-pricing-card.featured {
                border-color: #0073aa;
                position: relative;
            }
            .ls-pricing-name {
                font-size: 24px;
                font-weight: 700;
                margin-bottom: 10px;
                color: #1d2327;
            }
            .ls-pricing-description {
                color: #646970;
                margin-bottom: 20px;
                min-height: 40px;
            }
            .ls-pricing-price {
                font-size: 48px;
                font-weight: 700;
                color: #0073aa;
                margin-bottom: 5px;
            }
            .ls-pricing-price sup {
                font-size: 20px;
                position: relative;
                top: -15px;
            }
            .ls-pricing-cycle {
                color: #646970;
                margin-bottom: 25px;
            }
            .ls-pricing-features {
                list-style: none;
                padding: 0;
                margin: 0 0 25px;
                text-align: left;
            }
            .ls-pricing-features li {
                padding: 8px 0;
                border-bottom: 1px solid #f0f0f0;
            }
            .ls-pricing-features li:before {
                content: "✓";
                color: #28a745;
                margin-right: 10px;
                font-weight: bold;
            }
            .ls-pricing-button {
                display: block;
                padding: 14px 28px;
                background: #0073aa;
                color: #fff !important;
                text-decoration: none !important;
                border-radius: 6px;
                font-weight: 600;
                font-size: 16px;
                transition: background 0.2s;
            }
            .ls-pricing-button:hover {
                background: #005a87;
            }
-e 
/* Success page styles */
            .ls-success-box {
                background: #d4edda;
                border: 1px solid #c3e6cb;
                border-radius: 8px;
                padding: 30px;
                text-align: center;
                max-width: 600px;
                margin: 30px auto;
            }
            .ls-success-icon {
                font-size: 60px;
                margin-bottom: 20px;
            }
            .ls-success-title {
                font-size: 28px;
                font-weight: 700;
                color: #155724;
                margin-bottom: 15px;
            }
            .ls-success-message {
                font-size: 16px;
                color: #155724;
                margin-bottom: 20px;
            }
