@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.nw-footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.nw-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.nw-footer-logo {
  flex: 1 1 250px;
  text-align: center;
}

.nw-footer-logo img {
  max-width: 200px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.nw-social-icons a {
  color: #fff;
  font-size: 22px;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.nw-social-icons a:hover {
  color: #007bff;
}

.nw-footer-section {
  flex: 1 1 200px;
  margin: 10px;
}

.nw-footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.nw-footer-section ul {
  list-style: none;
  padding: 0;
}

.nw-footer-section ul li {
  margin-bottom: 8px;
}

.nw-footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nw-footer-section ul li a:hover {
  color: #007bff;
}

@media (max-width: 768px) {
  .nw-footer-container {
    flex-direction: column;
    text-align: center;
  }
  .nw-footer-section {
    margin: 20px 0;
  }
}
