.custom-footer {
    background-color: #000; 
    color: #fff; 
    text-align: center;
    padding: 20px 10px;
    font-family: Arial, sans-serif; 
    font-size: 0.9rem; 
  }
  
  .footer-content {
    justify-content: space-around;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 1em;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: calc(100% - 2em);
    color: white;
    position: sticky;
    top: 90vh;
    margin-top: 1rem;
  }
  
  .branding {
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 10px; 
  }
  
  .branding .logo,
  .branding .bbd-logo {
    height: 3em;
    margin-top: 1em;
  }
  
  .branding span {
    color: #fff; 
  }
  
  .footer-content p {
    font-size: 0.8rem; 
    line-height: 1.5; 
  }
  
  .footer-content a {
    color: #fff;
    text-decoration: none; 
  }
  
  .footer-content a:hover {
    color: red 
  }
  