/* Legal Pages Styles */

.hero-legal {
  min-height: 50vh;
  background: #000;
}

.hero-legal .hero-media-bg {
  background: #000;
}

.hero-legal .hero-content {
  margin-top: 4rem;
}

.hero-legal .hero-title,
.hero-legal .hero-sub {
  color: #fff;
}

.legal-content {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-primary);
  padding-bottom: 0.5rem;
}

.legal-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

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

.contact-info {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--accent-primary);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer bottom links styling */
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-bottom-links span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 0;
  }
  
  .legal-section h2 {
    font-size: 1.3rem;
  }
  
  .legal-section h3 {
    font-size: 1.1rem;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-bottom-links span {
    display: none;
  }
}
