.footer {
  background-color: #0B1E3C;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  width: 160px !important;
  height: auto !important;
  max-width: 160px !important;
  max-height: 120px !important;
  object-fit: contain !important;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
}

.icon {
  font-size: 1.3rem;
}
.icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
  opacity: 0.85;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact {
    margin-top: 20px;
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }
}
