        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
/*             background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
               background: #F8F9FA; 
            min-height: 100vh;
/*             padding: 60px 20px; */
        }

        .container {
            max-width: 120rem;
/*             margin: 0 auto; */
        }

        .header {
            text-align: center;
            margin-bottom: 6rem;
            color: white;
        }

        .header h1 {
            font-size: 3rem;
            margin-bottom: 1.6px;
            font-weight: 700;
        }

        .header p {
            font-size: 1.8rem;
            opacity: 0.9;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .pricing-card.popular {
            border: 3px solid #667eea;
            transform: scale(1.05);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 24px;
            border: solid gold 3px;
            border-radius: 20px;
            font-size: 1.45rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .plan-name {
            font-size: 2.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

        .price-container {
            margin: 30px 0;
        }

        .price {
            font-size: 5rem;
            font-weight: 700;
            color: #667eea;
            line-height: 1;
        }

        .price-currency {
            font-size: 3rem;
            vertical-align: super;
        }

        .price-period {
            display: block;
            font-size: 1.75rem;
            color: #666;
            margin-top: 10px;
        }

        .discount {
            display: inline-block;
            background: #10b981;
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 10px;
        }

        .features {
            list-style: none;
            margin: 30px 0;
            padding: 0;
        }

        .features li {
            padding: 12px 0;
            color: #555;
            font-size: 1.75rem;
            border-bottom: 1px solid #f0f0f0;
        }

        .features li:last-child {
            border-bottom: none;
        }

        .features li svg {
            color: #10b981;
            margin-right: 10px;
            vertical-align: middle;
        }

        .subscribe-btn {
            width: 100%;
            padding: 16px 32px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.7rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .subscribe-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .subscribe-btn:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 3rem;
            }

            .pricing-card.popular {
                transform: scale(1);
            }
        }