.pricing-section {
  padding: 60px 20px;
  background: #fdf4fd;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.pricing-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #5a2ec3;
  margin-bottom: 50px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(90, 46, 195, 0.1);
  width: 320px;
  padding: 35px 25px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid #e7d9fd;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(90, 46, 195, 0.15);
}

.pricing-card h3 {
  font-size: 22px;
  color: #5a2ec3;
  margin-bottom: 10px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.price span {
  font-size: 14px;
  color: #777;
  font-weight: 500;
}

.highlight {
  font-size: 15px;
  color: #4b4b4b;
  font-style: italic;
  margin-bottom: 25px;
}

.plan-btn {
  background-color: #5a2ec3;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 25px !important;
  transition: background 0.3s ease;
}

.plan-btn:hover {
  background-color: #4721a0;
  color: white;
}

.services {
  margin-top: 20px;
}

.services h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.services ul {
  padding-left: 20px;
  list-style: disc;
  color: #444;
  line-height: 1.6;
}

.services ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 90%;
  }

  .pricing-section h2 {
    font-size: 28px;
  }

  .price {
    font-size: 28px;
  }
}
