.pillars-row {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: visible;
  align-items: stretch;
  padding: 1rem 0.7rem;
  box-sizing: border-box;
  margin: 0 0 1rem 0;
  width: 100%;
  gap: 2rem;
}

.pillars-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33%;
  background-color: white;
  border-radius: 2rem;
  padding: 1.2rem;
  margin: 0;
  box-sizing: border-box;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  flex-shrink: 1;
  font-family: 'Outfit', sans-serif;
}


.pillars-container:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1)
}

.pillar {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}