/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 60px;
    background: #000;
    color: #fff;
    flex-wrap: wrap;
  }
  
  .footer-logo {
    height: 80px;
    margin-right: 10px;
  }
  
  .footer-brand {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .footer-socials a img {
    height: 24px;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s ease;
  }
  
  .footer-socials a:hover img {
    opacity: 0.6;
  }
  
  .footer-links {
    display: flex;
    gap: 60px;
  }
  
  .footer-links h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
  }
  
  .footer-links p {
    margin: 6px 0;
    font-size: 14px;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 30px;
    }
    .footer-links {
      flex-direction: column;
      gap: 20px;
    }
  }
  