        h1{
            font-size: 4rem;
        }
        .plans-hero {
            padding-top: 50px;
            text-align: center;
            margin-bottom: 4rem;
        }
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .plan-card-detail {
            display: flex;
            flex-direction: column;
            padding: 2.5rem;
            height: 100%;
        }
        .plan-tag {
            color: var(--fluorescent-cyan);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .plan-price-large {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            line-height: 1;
            margin-bottom: 1.5rem;
        }
        .plan-features-list {
            list-style: none;
            margin: 2rem 0;
            flex-grow: 1;
        }
        .plan-features-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            line-height: 1.5;
            color: rgba(240, 240, 240, 0.9);
        }
        .plan-features-list i {
            color: var(--fluorescent-cyan);
            margin-right: 12px;
            margin-top: 4px;
        }
        .popular-badge {
            background: var(--fluorescent-cyan);
            color: #0f172a;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 10px;
        }
        .faq-section {
            margin-top: 5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .faq-item {
            margin-bottom: 1.5rem;
        }
        .faq-item h3 {
            color: var(--fluorescent-cyan);
            margin-bottom: 0.5rem;
        }
        .btn-pricing{
            padding: 10px;
        }
        /* Responsywność */
        @media (max-width: 768px) {
            .plans-hero { padding-top: 80px; }
            .plan-price-large { font-size: 3rem; }
            h1{
                font-size: 4rem;
            }
        }
