/* Footer Styles */
.site-footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding: 2rem 0 1rem 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

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

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

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.footer-copyright p {
  margin: 0;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-content {
    padding: 0 1rem;
  }
}

/* Legal Page Specific Styles */
.legal-page {
  min-height: calc(100vh - 200px);
  padding-bottom: 2rem;
}

/* Legal Document Print Styles */
@media print {
  .site-footer,
  .theme-toggle,
  .nav-container,
  .back-link {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .meta-info,
  .warning-box,
  .critical-warning,
  .ai-header,
  .consent-section {
    border: 1px solid #ccc !important;
    background: #f9f9f9 !important;
    color: black !important;
  }
  
  h1, h2, h3 {
    color: black !important;
  }
  
  .highlight,
  .highlight-ai {
    background: #f0f0f0 !important;
    color: black !important;
  }
  
  .critical-text,
  .warning-text,
  .prohibited-text {
    color: black !important;
    font-weight: bold;
  }
}