.footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 40px 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
  }
  
  .footer-logo {
    height: 40px;
    filter: brightness(1.2);
  }
  
  .footer-right {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
  }
  
  .footer-right a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-right a:hover {
    color: #f39c12;
  }
  .footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 40px 20px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
  }
  
  .footer-logo {
    height: 40px;
    filter: brightness(1.2);
  }
  
  .footer-right {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
  }
  
  .footer-right a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-right a:hover {
    color: #f39c12;
  }
    
  @media (max-width: 1024px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
      padding: 0 20px;
    }
  
    .footer-left {
      justify-content: center;
    }
  
    .footer-right {
      justify-content: center;
    }
  }
  
  @media (max-width: 600px) {
    .footer {
      text-align: center;
      padding: 30px 16px;
    }
  
    .footer-container {
      align-items: center;
    }
  
    .footer-left {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  
    .footer-right {
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
  
    .footer-logo {
      height: 36px;
    }
  
    .footer-right a {
      font-size: 14px;
    }
  }
  
  .footer-note {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    color: #ccc;
  }
  
  .footer-right a i {
    font-size: 20px;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .footer-right a:hover i {
    color: #f39c12;
  }
  