.row-new {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.column-new {
  width: 100%;
  padding: 15px;
  text-align: center;
}

.card {
  width: 100%;
  height: 100%;
  padding: 3em 2em;
  background: linear-gradient(#ffffff 50%, #02b40b 50%);
  background-size: 100% 200%;
  background-position: 0 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.5s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-wrapper {
  background-color: #02b40b;
  position: relative;
  margin-bottom: 20px;
  font-size: 32px;
  height: 80px;
  width: 80px;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  box-shadow: 0 8px 20px rgba(2, 180, 11, 0.2);
}

.card h3 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.25em;
  transition: all 0.3s;
}

.card p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 0;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  background-position: 0 100%;
  border-color: #02b40b;
  box-shadow: 0 15px 40px rgba(2, 180, 11, 0.2);
}

.card:hover .icon-wrapper {
  background-color: #ffffff;
  color: #02b40b;
}

.card:hover h3 {
  color: #ffffff;
}

.card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

@media screen and (min-width: 768px) {
  .column-new {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 992px) {
  .column-new {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}