body {
  background: #f7f3e9;
  font-family: "Inter", sans-serif;
  padding: 50px 0;
}

.pricing-section {
  max-width: 1200px;
  margin: auto;
}

.price-card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #ececec;
  padding: 35px 25px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
}

.plan-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.price-value {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.price-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.feature-list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
  gap: 10px;
}

.feature-list i {
  color: #30c15b;
  font-size: 16px;
}

.btn-start {
  background: #30c15b;
  padding: 10px 0;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  width: 100%;
  border: none;
  font-size: 16px;
  transition: 0.25s ease;
}

.btn-start:hover {
  background: #2bb050;
}/*# sourceMappingURL=pricingDesign3.css.map */