
        body {
            background: #181818;
            color: #fff;
            font-family: 'Calibri', sans-serif;
            margin: 0;
            min-height: 90vh;
            
        }
        .pricing-header {
            text-align: center;
            margin: 40px 0 30px 0;
        }
        .pricing-header h1 {
            font-family: 'Cormorant', serif;
            color: #4CAF50;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        .pricing-cards {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 0 auto;
            max-width: 700px;
            padding: 0 20px;
        }
        .pricing-card {
            background: rgba(14, 12, 9, 0.97);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 18px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.18);
            padding: 38px 32px 32px 32px;
            min-width: 220px;
            max-width: 320px;
            position: relative;
            z-index: 1;
            transition: 
                transform 0.4s cubic-bezier(.4,0,.2,1), 
                box-shadow 0.3s;
        }
        .pricing-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 16px 40px rgba(76,175,80,0.18);
        }
        .pricing-title {
            font-family: 'Cormorant', serif;
            font-size: 1.5rem;
            color: #4CAF50;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .pricing-amount {
            font-size: 2.2rem;
            color: #fff;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .pricing-desc {
            font-size: 1rem;
            color: #e0e0e0;
            margin-bottom: 0;
        }
        @media (max-width: 768px) {
            .pricing-cards {
                display: block;
                max-width: 95vw;
                padding: 0 0 40px 0;
                position: relative;
                min-height: 420px;
            }
            .pricing-card {
                width: 90vw;
                max-width: 98vw;
                margin: 0 auto 30px auto;
                box-shadow: 0 8px 32px rgba(0,0,0,0.22);
                z-index: 1;
                position: relative;
                transition: 
                    transform 0.4s cubic-bezier(.4,0,.2,1), 
                    box-shadow 0.3s;
            }
            .pricing-card:first-child {
                z-index: 2;
                background: linear-gradient(120deg, #232a23 80%, #4CAF50 120%);
                transform: none;
            }
            .pricing-card:last-child {
                z-index: 1;
                background: linear-gradient(120deg, #232a23 80%, #388e3c 120%);
                transform: none;
            }
            .pricing-cards.stacked .pricing-card:first-child {
                transform: translateY(-40px) scale(0.96) rotate(-2deg);
                z-index: 1;
                box-shadow: 0 2px 16px rgba(0,0,0,0.18);
            }
            .pricing-cards.stacked .pricing-card:last-child {
                transform: translateY(40px) scale(1.04) rotate(2deg);
                z-index: 2;
                box-shadow: 0 16px 40px rgba(76,175,80,0.18);
            }
        }
    