/* Ensure consistent text color for all columns and icons */
.it-footer-widget p,
.it-footer-widget ul li a,
.it-footer-widget ul li span,
.it-footer-widget i {
  color: #ffffff !important;  /* Matches the white color for text and icons */
}


/* Adjust spacing between columns */
.it-footer-wrap .row {
  display: flex;
  justify-content: space-between; /* Distributes space evenly */
}

/* Fine-tune padding for each column */
.it-footer-widget {
  padding-right: 30px; /* Adds spacing between columns */
}

/* Ensure the last column doesn't have extra padding on the right */
.it-footer-widget:last-child {
  padding-right: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .it-footer-widget {
    padding-right: 0; /* Remove extra padding on smaller screens */
  }
  .it-footer-wrap .row {
    justify-content: flex-start; /* Adjust for smaller screens */
  }
}
