/*Footer Start*/
.footer {
  background: #191a2c;
  color: #fff;
  padding: 40px ;
  font-family: sans-serif;
  margin: 0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-col {
  flex: 0 0 23%;
  min-width: 220px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Responsive: 2 columns on tablets */
@media screen and (max-width: 768px) {
  .footer-col {
    flex: 0 0 48%;
  }
}

/* 1 column on mobile */
@media screen and (max-width: 500px) {
  .footer-col {
    flex: 0 0 100%;
  }
}
/*Footer End*/