.footer {
    background-color: var(--muted);
    padding: 2rem 0;
    border-top: 1px solid var(--border);
  }
  
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo img {
    width: 120px;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: var(--accent);
  }
  
  .footer-copy {
    font-size: 0.8rem;
    color: var(--muted-foreground);
  }
  
  /* адаптив */
  @media (max-width: 600px) {
    .footer-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }
  