/*Footer*/
footer {
  background-color: #192733;
  padding: 20px 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #e4e1e1;

}

.footer-section {
  width: 45%;
}

.footer-section h5 {
  color: #e4e1e1;
  font-weight: bold;
}

.footer-section p {
  font-size: 14px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  color: #e4e1e1;

}

.footer-section ul li a {
  color: #e4e1e1;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

/* CSS for copyright */
.copyright {
  text-align: center;
  margin-top: 20px;
}

.copyright p {
  font-size: 12px;
  color: #e4e1e1;
}

@media screen and (max-width: 480px) {
  footer {
      padding: 10px 0;
  }

  .footer-section p {
      font-size: 12px;
  }

  .footer-section ul li {
      margin-bottom: 5px;
  }

  .copyright p {
      font-size: 10px;
  }
}