.columns-bg-col {
  padding: 40px 20px;
}

.columns-bg-col .columns-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.columns-bg-col .columns-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.columns-bg-col .column-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.columns-bg-col .heading-with-icon {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center;    /* keep centered */
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;     /* center the heading text */
}

.columns-bg-col .heading-with-icon .icon {
  margin-bottom: 5px; /* optional spacing between icon and heading */
}

.columns-bg-col .heading-with-icon .icon i {
  font-size: 24px;
}

.columns-bg-col .heading-with-icon .icon img {
  max-height: 24px;
  width: auto;
  display: inline-block;
}

.columns-bg-col .column-heading.uppercase {
  text-transform: uppercase;
}

.columns-bg-col .column-heading.bold {
  font-weight: bold;
}

.columns-bg-col .column-text {
  font-size: 16px;
  margin-bottom: 10px;
}

.columns-bg-col .column-link a {
  color: inherit;
  text-decoration: underline;
  font-weight: 500;
}

.column_button {
    text-align: center; /* Center the button horizontally */
}

.column_button a {
    display: inline-block; /* So padding works properly */
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.column_button a:hover {
    background-color: #000;
    color: #fff;
}

.column_button.black a { 
    background-color: #000;
    color: #fff;
}

.column_button.black a:hover {
   background-color: #fff;
   color: #000;
}