/* FORCE 3 COLUMNS */
.row {
  display: flex !important;
  flex-wrap: wrap !important;
}

.col-lg-4 {
  width: 33.33% !important;
  padding: 15px;
}

/* CARD STYLE */
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

/* BUTTON */
.pricing-card .btn {
  border-radius: 8px;
  border: 2px solid #05264e;
  color: #05264e;
}

.pricing-card .btn:hover {
  background: #05264e;
  color: #fff;
}