
.pricing {
    padding: 100px 0;
    max-width: 9999px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.pricing-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    background-color: #3498db;
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.price {
    font-size: 48px;
    font-weight: 700;
}

.price span {
    font-size: 16px;
    opacity: 0.8;
}

.pricing-features {
    padding: 30px;
    list-style: none;
}

.pricing-features li {
    padding: 15px 0;
    border-bottom: 1px solid #f5f7fa;
    color: #7f8c8d;
    font-weight: 400;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #3498db;
    margin-right: 10px;
}

.pricing-footer {
    padding: 20px 30px;
    text-align: center;
}
