.footer-top {
    background-color: #DCDDDE; 
    padding: 40px 0;
  }
  
  .footer-logo {
    max-width: 70%;
    max-height: 35%;
    margin-bottom: 20px;
  }
  
  .footer-top p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .footer-links, .contact-info {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li, .contact-info li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #000;
  }
  
  .contact-info li {
    color: #555;
    font-size: 1rem;
  }
  
  .social-media a {
    margin-right: 10px;
  }
  
  .social-media img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
  }
  
  .social-media a:hover img {
    transform: scale(1.1);
  }
  
  .footer-bottom {
    background-color: #81847E; 
    padding: 20px 0;
    color: white;
  }
  
  .footer-bottom .container {
    font-size: 1rem;
  }
  
  .col-lg-35 {
    flex: 0 0 35%;
    max-width: 35%;
  }
  
  .col-lg-25 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  /* Add these styles to your CSS file */
@media (max-width: 767.98px) {
    .footer-top .row {
        display: flex;
        flex-direction: column;
    }
    
    .contact-info {
        width: 100% !important; /* Override the inline style */
        text-align: right !important;
    }
    
    .social-media {
        justify-content: flex-end;
    }
    
    .footer-links {
        margin-bottom: 20px;
    }
}