.custom-footer {
   background-color: #152f2a;
   color: #edf6f1;
   box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
 }
 
 .footer-heading {
   font-size: 1.2rem;
   font-weight: bold;
   color: #ffffff;
   margin-bottom: 1rem;
 }
 
 .footer-link {
   color: #edf6f1;
   text-decoration: none;
   transition: all 0.3s ease;
   position: relative;
   display: inline-block;
 }
 
 .footer-link::after {
   content: '';
   position: absolute;
   width: 0;
   height: 2px;
   bottom: -2px;
   left: 50%;
   background-color: #edf6f1;
   transition: all 0.3s ease;
 }
 
 .footer-link:hover {
   color: #ffffff;
 }
 
 .footer-link:hover::after {
   width: 100%;
   left: 0;
 }
 
 .footer-social-link {
   color: #edf6f1;
   text-decoration: none;
   transition: all 0.3s ease;
 }
 
 .footer-social-link:hover {
   color: #ffffff;
   transform: scale(1.1);
 }
 
 .footer-copyright {
   color: #a8b9b5;
   font-size: 0.9rem;
 }
 
 @media (max-width: 991.98px) {
   .custom-footer {
     text-align: center;
   }
 
   .footer-heading {
     margin-top: 1rem;
   }
 
   .footer-link::after {
     display: none;
   }
 }
