  /* Footer icons */
  .footer-logo .logo {
    width: 100px;
    height: auto;
  }
  
  /* Footer Links */
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
  }
  
  .footer-link i {
    font-size: 1.2rem;
  }
  
  .footer-link:hover {
    color: #007bff;
  }
  
  /* Footer Social Icons */
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .social-icon {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
  }
  
  .social-icon:hover {
    color: #007bff;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      gap: 1rem;
    }
  
    .footer-links {
      justify-content: center;
    }
  
    .footer-social {
      justify-content: center;
    }
  }