.pricing-section {
  background: #f3F4F6;
  padding: 60px 0;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin:40px;
}

.pricing-title {
  font-family: "Cherry Bomb One", system-ui;
  text-align:center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #22223b;
}

.pricing-table {
  
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(34,34,59,0.07);
  padding: 36px 28px;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(34,34,59,0.12);
}

.pricing-card.featured {
  border: 2px solid #4e9af1;
  background: #f0f6ff;
}

.pricing-card h3 {
  font-family: "Cherry Bomb One", system-ui;
  font-size: 1.5rem;
  color: #4e9af1;
  margin-bottom: 18px;
}

.price {
  font-family: "Roboto", sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 22px;
  color: #22223b;
}

.price span {
  font-size: 1rem;
  color: #888;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.features li {
  font-family: "Sour Gummy", sans-serif;
  margin-bottom: 10px;
  color: #444;
  font-size: 1.05rem;
  padding-left: 18px;
  position: relative;
}

.features li::before {
  content: "✓";
  color: #4e9af1;
  position: absolute;
  left: 0;
}

.cta-btn {
  font-family: "Sour Gummy", sans-serif;
  background: linear-gradient(90deg, #4e9af1 0%, #22223b 100%);
  color: #fff;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #22223b 0%, #4e9af1 100%);
  cursor: pointer;
  
}

/* Responsive */
@media (max-width: 1000px) {
  .pricing-table {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .pricing-card {
    width: 95%;
    max-width: 380px;
  }
}