.pricing-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px;
  background: #f9fafc;
  font-family: Arial, sans-serif;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 25px;
  text-align: center;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.pricing-title {
  font-size: 1.5rem !important;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.pricing-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: bold;
  color: #2c7be5;
}

.pricing-price span {
  font-size: 1rem;
  color: #888;
}

.pricing-btn {
  background: #2c7be5;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.pricing-btn:hover {
  background: #1a5fbb;
}

.featured {
  border: 2px solid #2c7be5;
}
