/* Legal pages (Terms of Use, Privacy Policy) */

.legal-page {
  padding: 120px 100px 50px 100px; /* Added top padding for header */
  min-height: 80vh;
  background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
}

.legal-page .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.legal-page .section-header h1 {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.legal-page .section-header .breadcrumb {
  color: #888;
  font-size: 14px;
}

.legal-page .section-header .breadcrumb a {
  color: #a855f7;
  text-decoration: none;
}

.legal-page .section-header .breadcrumb a:hover {
  text-decoration: underline;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  color: #e0e0e0;
  line-height: 1.8;
}

.legal-content .last-updated {
  color: #888;
  font-style: italic;
  margin-bottom: 30px;
  font-size: 14px;
}

.legal-content h2 {
  color: #fff;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

.legal-content h3 {
  color: #a855f7;
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.legal-content ul li {
  margin-bottom: 8px;
  padding-left: 10px;
}

.legal-content a {
  color: #a855f7;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .legal-page {
    padding: 100px 20px 30px 20px; /* Adjusted for mobile */
  }

  .legal-page .section-header h1 {
    font-size: 32px;
  }

  .legal-content {
    font-size: 14px;
  }

  .legal-content h2 {
    font-size: 20px;
  }

  .legal-content h3 {
    font-size: 16px;
  }
}

