.pricing-table {
  width: 360px;
  background: linear-gradient(135deg, #45BA83, #03041C);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #fff; 
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-table:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pricing-header {
  padding: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.plan-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.price {
  font-size: 4.8rem;
  font-weight: 900;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.currency {
  font-size: 3rem;
  font-weight: 800;
  margin-right: 5px;
}

.duration {
  font-size: 2rem;
  margin-left: 5px;
  font-weight: 700;
}

.pricing-body {
  padding: 20px 30px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.features li {
  margin: 15px 0;
  font-size: 1.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1.5;
  color: #fff;
}

.features i {
  color: #00ff85;
  font-size: 1.2rem;
  margin-right: 10px;
}