.pricing-container {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
    align-items: stretch;
}

.pricing-card {
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
}

.card-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f7fafc;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2b6cb0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f7fafc;
    display: flex;
    justify-content: space-between;
}

.feat-name {
    color: #718096;
    font-size: 0.9rem;
}

.feat-value {
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
    }
    
    .pricing-card {
        width: 100%;
    }
}