.pricing-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  margin: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  opacity: 0;
  /* transform: translateX(-100%); */
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.card-header {
  padding: 30px;
  background: linear-gradient(167deg, #7A772D, #7A772D);
  color: rgb(255, 255, 255);
  text-align: center;
}

.card-body {
  padding: 30px;
  text-align: center;
}

.price {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 20px 0;
  color: #2d3436;
}

.btn-custom {
  background: #7A772D;
  color: rgb(255, 255, 255);
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 34px;
  width: 100%;
  transition: all 0.3s;
}

.btn-custom:hover {
  background: #8e8a40;
  transform: translateY(-2px);
}

/* Different header colors
.card-2 .card-header { background: linear-gradient(167deg, #fdff00, #ebebeb); }
.card-3 .card-header { background: linear-gradient(167deg, #fdff00, #ebebeb); }
.card-4 .card-header { background: linear-gradient(167deg, #fdff00, #ebebeb) }
.card-5 .card-header { background: linear-gradient(167deg, #fdff00, #ebebeb) } */

@media (max-width: 768px) {
  .pricing-card {
      margin: 15px 0;
  }
}