.static-inner-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 -5px; /* Allows padding inside columns without pushing them to a new line */
}

.static-inner-row > * {
  box-sizing: border-box;
  flex: 1 1 calc(33.333% - 10px); /* Three columns per row, accounting for padding */
  padding: 5px;
  min-width: 0; /* Allows columns to shrink within their container */
}

.static-inner-row img {
  max-width: 100%;
  height: auto;
  display: block;
}

.box-with-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
    background-color: #ffffff; /* Ensure consistent background */
    flex: 1; /* Allows columns to resize and fit evenly */
    min-width: 200px; /* Ensure columns don’t shrink too much */
}


.white-text {
    color: #ffffff;
}

.collapsing-column {
    border-right: 1px solid #d6d6d6;
    margin: 0;
    padding: 10px;
}

.collapsing-column:last-of-type {
    border-right: none;
}

@media screen and (max-width: 768px) {
    .collapsing-column {
        border-right: none;
        border-bottom: 1px solid #d6d6d6;
    }

    .collapsing-column:last-of-type {
        border-bottom: none;
    }
}

.centered-icon-text {
    display: flex;
    flex-direction: column; /* Stack icon and text */
    align-items: center; /* Center both horizontally */
    justify-content: center; /* Center vertically if needed */
    text-align: center; /* Ensure text alignment is centered */
}

.icon-text {
    display: inline-flex; /* Ensure the icon and text are inline */
    align-items: center; /* Align icon with text baseline */
    gap: 8px; /* Adjust spacing between icon and text */
}

 .wpcf7-submit {
    background-color: #2a2a2a;
}