        :root {
            --primary: #6f42c1;
            --secondary: #d63384;
            --success: #20c997;
        }

        .pricing-header {
            background: linear-gradient(135deg, var(--primary) 0%, #4a1d96 100%);
            color: white;
            padding: 5rem 0;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        .pricing-card {
            border: none;
            border-radius: 10px;
            transition: all 0.3s;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .pricing-card.popular {
            border: 3px solid var(--success);
            position: relative;
        }

        .popular-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--success);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .price {
            font-size: 3rem;
            font-weight: bold;
        }

        .price-period {
            font-size: 1rem;
            color: #6c757d;
        }

        .feature-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .divider {
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            width: 100px;
            margin: 1.5rem auto;
        }

        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 1.5rem 0;
        }

        .payment-methods img {
            height: 30px;
            margin: 0 5px;
        }