html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

img,
iframe,
video {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

.custom-footer-contact {
  background: #000; /* Black background */
  padding: 50px 20px;
  color: #fff;
}

.footer-contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
}

.footer-contact-box {
  flex: 1;
  padding: 25px;
  min-width: 250px;
  transition: 0.3s ease;
}

.footer-contact-box h4 {
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 2px;
  color: #ff0000; /* Red headings */
  font-weight: 600;
}

.footer-contact-box p {
  margin: 0;
  color: #ccc;
  font-size: 15px;
}

.footer-contact-box a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-contact-box a:hover {
  color: #ff0000; /* Red hover */
}

/* Red vertical dividers */
.footer-contact-box:not(:last-child) {
  border-right: 1px solid #ff0000;
}

/* Subtle hover effect */
.footer-contact-box:hover {
  background: rgba(255, 0, 0, 0.05);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-contact-container {
    flex-direction: column;
  }

  .footer-contact-box {
    border-right: none !important;
    border-bottom: 1px solid #ff0000;
  }

  .footer-contact-box:last-child {
    border-bottom: none;
  }
}
