.footer {
    background-color: var(--header-bg);
    padding: 30px 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
  }

  .footer-links {
    display: flex;
    gap: 20px;
  }

  .footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .footer-link:hover {
    color: var(--accent);
  }

  .copyright {
    color: var(--text-secondary);
    font-size: 14px;
  }

  @media (max-width: 768px) {
    .footer {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }

    .footer-links {
      flex-wrap: wrap;
      justify-content: center;
    }
  }