@media screen and (min-width:992px) {
.pillar-page h1 {
    font-size: 3.5rem;
  }
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.pagination-container button {
  padding: 5px 10px;
  margin: 0 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f7f7f7;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pagination-container button.active {
  background: #cae7e5 !important;
  color: #000;
}

.pagination-container button:disabled {
  background-color: #e0e0e0;
  cursor: not-allowed;
}