     
        .pricing-card {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.popular {
            border: 2px solid #0d6efd;
            transform: scale(1.05);
        }
        
        .card-header-gradient {
            background: linear-gradient(to right, #dbeafe, #e0e7ff);
            border-bottom: 2px solid #bfdbfe;
            border-radius: 1rem 1rem 0 0 !important;
            padding: 1.5rem;
        }
        
        .card-header-gradient h2 {
            color: #1e293b;
            margin-bottom: 0.5rem;
            font-size: 1.875rem;
            font-weight: 700;
        }
        
        .badge-popular {
            position: absolute;
            top: -1rem;
            left: 50%;
            transform: translateX(-50%);
            background-color: #0d6efd;
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
        }
        
        .badge-discount {
            position: absolute;
            top: -1rem;
            right: 1rem;
            background-color: #198754;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.875rem;
        }
        
        .price-main {
            color: #0d6efd;
            font-weight: 700;
            font-size: 2.5rem;
        }
        
        .price-period {
            color: #6c757d;
            font-size: 1rem;
        }
        
        .price-original {
            color: #adb5bd;
            text-decoration: line-through;
            font-size: 1rem;
        }
        
        .price-discount {
            color: #198754;
            font-size: 0.875rem;
        }
        
        .features-section {
            background: linear-gradient(to right, #dbeafe, #e0e7ff);
            border-radius: 0 0 1rem 1rem;
            padding: 1.5rem;
            margin: -1rem -1rem -1rem -1rem;
            flex-grow: 1;
        }
        
        .feature-item {
            display: flex;
            align-items: start;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .feature-item:last-child {
            margin-bottom: 0;
        }
        
        .feature-icon {
            color: #198754;
            font-size: 1.25rem;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }
        
        .feature-text {
            color: #475569;
            font-size: 0.875rem;
        }
        
        .toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .toggle-switch {
            position: relative;
            width: 3.5rem;
            height: 1.75rem;
            background-color: #adb5bd;
            border-radius: 9999px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .toggle-switch.active {
            background-color: #0d6efd;
        }
        
        .toggle-slider {
            position: absolute;
            top: 0.25rem;
            left: 0.25rem;
            width: 1.25rem;
            height: 1.25rem;
            background-color: white;
            border-radius: 50%;
            transition: transform 0.3s;
        }
        
        .toggle-switch.active .toggle-slider {
            transform: translateX(1.75rem);
        }
        
        .toggle-label {
            color: #6c757d;
            cursor: pointer;
        }
        
        .toggle-label.active {
            color: #1e293b;
            font-weight: 500;
        }
        
        .btn-select {
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            transition: all 0.2s;
            width: 100%;
        }
        
        .btn-select-primary {
            background-color: #0d6efd;
            color: white;
            border: none;
        }
        
        .btn-select-primary:hover {
            background-color: #0b5ed7;
        }
        
        .btn-select-secondary {
            background-color: #f1f5f9;
            color: #1e293b;
            border: none;
        }
        
        .btn-select-secondary:hover {
            background-color: #e2e8f0;
        }
        
        .description-text {
            color: #475569;
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }
        
        .card-body-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }