/* Footer contact icons alignment */
.footer-contact-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  flex: 1;
}

.footer-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px;
}

.footer-icon-container a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.footer-icon-container a:hover {
  transform: scale(1.1);
}

.footer-contact-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.footer-contact-heading {
  padding-right: 20px;
}

.footer-icon-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make sure the icons are perfectly centered */
.et_pb_column_1_4.footer-icon-column {
  width: auto;
  margin-right: 20px;
}

/* Responsive adjustments */
@media only screen and (max-width: 980px) {
  .footer-contact-row {
    display: flex;
    flex-direction: column;
  }
  
  .footer-contact-heading {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-icon-column {
    width: 50% !important;
    margin-bottom: 20px;
  }
}
