.pricing-box {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-box.featured {
  border: 3px solid #008060;
}

.badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #008060;
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-box .package-name {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.pricing-box .price-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-box .price-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 0px;
}

.pricing-box .price {
  font-size: 42px;
  font-weight: 700;
  color: #008060;
}

.pricing-box .price::before {
  content: "Rp ";
  font-size: 20px;
}

.pricing-box .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.pricing-box .features-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: #555;
}

.pricing-box .features-list li:last-child {
  border-bottom: none;
}

.pricing-box .features-list li i {
  color: #008060;
  margin-right: 10px;
  font-size: 18px;
}

.pricing-box .btn {
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  margin-top: auto;
}
