/* ==========================================================================
   Privacy Policy (privacy-policy.html)
   Design system: uses the shared tokens from /css/tokens.css. The legal
   text itself is left completely untouched, word-for-word -- only its
   presentation (container width, typography, section-header styling) was
   modernized, plus the .legal-section-title class added to each numbered
   heading so it reads as a real section header instead of inline bold
   text mid-paragraph.
   ========================================================================== */

/* ==========================================================================
   Home button (mobile navbar)
   ========================================================================== */
.home-btn {
  width: 56px;
  height: 56px;
  background: #dedfe0;
  border-radius: 50%;
  color: #000;
  text-decoration: none;
  margin-left: -5px;
  transition: all 0.2s ease;
}

.home-btn:hover {
  background-color: #e9ecef;
  color: #000;
  transform: scale(1.05);
}

.home-btn:active {
  transform: scale(0.95);
}

.home-btn i {
  font-size: 1.5rem;
  line-height: 1;
}

.home-text {
  font-size: 10px;
  line-height: 1;
  margin-top: 2px;
  color: #1f2937;
}

/* ==========================================================================
   Legal document content
   ========================================================================== */
.legal-hero-icon {
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: var(--space-3);
}

.legal-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin-bottom: var(--space-2);
}

.legal-effective-date {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-6);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  color: var(--text-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}

.legal-content strong {
  color: var(--dark);
}

.legal-section-title {
  display: block;
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-dark);
}

.legal-content .legal-cta {
  display: inline-block;
  margin-top: var(--space-6);
}

@media (max-width: 768px) {
  .legal-title {
    font-size: var(--font-size-2xl);
  }

  .legal-content {
    font-size: var(--font-size-sm);
  }

  .legal-section-title {
    font-size: var(--font-size-lg);
  }
}
