/* ===== Custom Footer Styles ===== */
.custom-footer {
  background: #fff;
  color: #ffff;
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  border-top: 1px solid #eaeaea;
}

.custom-footer__container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.custom-footer__col h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffff;
}

.custom-footer__col p,
.custom-footer__col a,
.custom-footer__col li {
  font-size: 16px;
  line-height: 1.6;
  color: #ffff;
  text-decoration: none;
}

.custom-footer__col a:hover {
  color: #1c6fb8;
}

.custom-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-footer__col ul li {
  margin-bottom: 8px;
}

/* === Socials === */
.custom-footer__socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ffff;
}
.custom-footer__socials a:hover { color: #1c6fb8; }

/* === Link icons (NEW) === */
.custom-footer__col ul li a{
  display: inline-flex;          /* line up icon + text */
  align-items: center;
  gap: 10px;
}

.custom-footer__icon{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  filter: grayscale(100%);       /* subtle look */
  opacity: .9;
  transform: translateZ(0);      /* crisper on some browsers */
}

.custom-footer__col ul li a:hover .custom-footer__icon{
  filter: none;                   /* color on hover */
  opacity: 1;
}

/* === Bottom bar === */
.custom-footer__bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #888;
}

