/* Legal Pages Styles */

/* Legal navbar adjustments */
.legal-navbar {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Legal content container */
.legal-content {
  padding: 120px 0 80px;
  min-height: calc(100vh - 200px);
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.last-updated {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Legal body content */
.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.legal-body section {
  margin-bottom: 40px;
}

.legal-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}

.legal-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 24px 0 12px;
}

.legal-body p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-body ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-body li {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-body li strong {
  color: var(--text-primary);
}

.legal-body a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-body a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Contact info box */
.contact-info {
  background: var(--surface);
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Cookie table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cookie-table th {
  background: var(--surface);
  font-weight: 600;
  color: var(--text-primary);
}

.cookie-table td {
  color: var(--text-secondary);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* Footer for legal pages */
.legal-content + .footer {
  margin-top: 0;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .legal-content {
    padding: 100px 0 60px;
  }

  .legal-header h1 {
    font-size: 2rem;
  }

  .legal-body h2 {
    font-size: 1.3rem;
  }

  .legal-body h3 {
    font-size: 1.1rem;
  }

  .cookie-table {
    display: block;
    overflow-x: auto;
  }

  .footer-legal-links {
    gap: 16px;
  }
}

/* Print styles for legal pages */
@media print {
  .navbar,
  .footer {
    display: none;
  }

  .legal-content {
    padding: 20px 0;
  }

  .legal-body a {
    color: var(--text-primary);
    text-decoration: underline;
  }

  .legal-body a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: var(--text-secondary);
  }
}
