body {
   margin: 0;
   padding: 0;
   min-height: 100vh;/* Ensures the footer stays at the bottom for short pages */
   /* display: flex;
   flex-direction: column; */
}

footer {
   bottom: 0;
   width: 100%;
   background-color: #011932;
   color: white;
   padding:20px 100px;
   
}
  footer  a{
   color:white;
   text-decoration: none;   
}
  footer  a:hover{
 border-bottom: 3px solid white; 
}

footer-content {
   display: flex;
   justify-content: space-around;
   align-items: center;
   padding: 10px;
}

footer-section {
   margin: 5px;
}

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

footer-section ul li {
   display: inline;
   margin-right: 10px;
}
footer h4{
  text-decoration: underline;
}

footer-section ul li a {
   color: white;
   text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 600px) {
   .footer-content {
       flex-direction: column;
   }
   .footer-section {
       margin-bottom: 10px;
   }
}
