.pricing-section {
    padding: 6rem 2rem;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem auto 0;
    max-width: 1000px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card li {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(79, 172, 254, 0.4);
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card:hover {
        transform: translateY(-3px);
    }
}