
footer {
  background:#1e4079;
  color: #fff;
  padding: 10px 0;
 
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin-left: 10%;
  margin-top: 2%;
}

.footer-section {
  flex: 1 1 20px;
}

.footer-section h3 {
  margin-top: 0;
  color: #92be3e;
}

.footer-section p,
.footer-section ul,.footer-section a {
  margin: 10px 0;
  color: #f4f4f4;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section a:hover{
  margin: 10px 0;
  text-decoration: underline;
}

.footer-section p ul li a:hover {
  text-decoration: underline;
  color: #f4f4f4;
}

.footer-bottom {
  background:#1e4079;
  padding: 10px 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: left;
  }

  .footer-section {
      margin: 1px 0;
      text-align: left;
      
  }
}