.track-icon-circle {
                    width: 80px;
                    height: 80px;
                    margin: 0 auto;
                    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .track-icon-circle i {
                    font-size: 32px;
                    color: white;
                }

                .session-count-badge {
                    display: inline-block;
                    padding: 5px 15px;
                    background-color: #f0f5ff;
                    border-radius: 20px;
                    color: #2575fc;
                    font-weight: 600;
                    margin: 10px 0;
                }
            /* Pricing Section Styles */
            .pricing-category-title {
                text-align: center;
                margin-bottom: 30px;
                color: #2575fc;
                position: relative;
                padding-bottom: 15px;
            }
            
            .pricing-category-title::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 3px;
                background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            }
            
            .pricing-card {
                border-radius: 10px;
                overflow: hidden;
                background: white;
                box-shadow: 0 5px 15px rgba(0,0,0,0.05);
                margin-bottom: 30px;
                position: relative;
                transition: transform 0.3s ease;
                height: 100%;
            }
            
            .pricing-card:hover {
                transform: translateY(-5px);
            }
            
            .pricing-card.has-offer {
                border: 2px solid #f59e0b;
            }
            
            .offer-badge {
                position: absolute;
                top: 15px;
                right: -30px;
                background: #f59e0b;
                color: white;
                padding: 5px 30px;
                transform: rotate(45deg);
                font-weight: bold;
                font-size: 0.8rem;
            }
            
            .pricing-header {
                padding: 30px 20px 20px;
                text-align: center;
                border-bottom: 1px solid #f0f5ff;
            }
            
            .pricing-title {
                color: #1a202c;
                margin-bottom: 15px;
            }
            
            .price-wrapper {
                margin: 20px 0;
            }
            
            .original-price {
                display: block;
                font-size: 1.2rem;
                color: #718096;
                text-decoration: line-through;
            }
            
            .effective-price {
                font-size: 2rem;
                font-weight: bold;
                color: #2575fc;
            }
            
            .pricing-description {
                color: #4a5568;
                font-size: 0.9rem;
            }
            
            .pricing-features {
                padding: 20px;
            }
            
            .pricing-features ul {
                list-style: none;
                padding: 0;
            }
            
            .pricing-features li {
                padding: 8px 0;
                border-bottom: 1px dashed #e2e8f0;
                display: flex;
                align-items: center;
            }
            
            .pricing-features li:last-child {
                border-bottom: none;
            }
            
            .pricing-features i {
                color: #48bb78;
                margin-right: 10px;
            }
            
            .pricing-footer {
                padding: 0 20px 30px;
                text-align: center;
            }
            
            .pricing-notes {
                padding: 0 20px 20px;
                font-size: 0.85rem;
                color: #718096;
                text-align: center;
            }
            
            .pricing-notes i {
                margin-right: 5px;
            }
