/* ===================================
   LAZY COMPANY WEBSITE - DESIGN SYSTEM
   Premium, Modern, Configuration-Driven
   =================================== */

/* ===== CSS Variables ===== */
:root {
  /* Product Accent Colors */
  --color-lazy-a: rgb(169, 235, 121);
  --color-lazy-b: rgb(230, 236, 203);
  --color-lazy-c: rgb(22, 161, 243);

  /* Neutral Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f7f8fa;
  --bg-tertiary: #e5e7eb;

  /* Text Colors */
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, rgba(169, 235, 121, 0.15), rgba(255, 255, 255, 0.95));

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Layout */
  --container-max: 1200px;
  --container-md: 960px;
  --container-sm: 720px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ===== Typography ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

/* ===== Layout ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-md {
  max-width: var(--container-md);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section-sm {
  padding: var(--spacing-2xl) 0;
}

/* ===== Header & Navigation ===== */
header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--bg-tertiary);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  height: 80px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 60%;
}

.brand a:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.lang-switcher {
  display: flex;
  gap: var(--spacing-xs);
  background: var(--bg-secondary);
  padding: 6px;
  border-radius: var(--radius-md);
}

.lang-btn {
  padding: 6px 12px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.575rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.lang-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.lang-btn.active {
  background: var(--bg-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

/* ===== Hero Section ===== */
.hero {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl) var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .slogan {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: var(--spacing-xl);
  box-shadow: var(--shadow-xl);
}

.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.status-live {
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
}

.status-coming-soon {
  background: rgba(251, 146, 60, 0.15);
  color: #c2410c;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-align: center;
}

.btn-primary {
  background: var(--text-primary);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-accent {
  background: var(--color-lazy-a);
  color: var(--text-primary);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--bg-tertiary);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background: var(--text-primary);
  color: white;
}

/* ===== Cards ===== */
.card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== Grid System ===== */
.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== Product Grid (Homepage) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.product-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  border: 1px solid var(--bg-tertiary);
}

.product-card[style*="background-image"] {
  border: none;
  color: #1a1a1a;
}

.product-card[style*="background-image"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1;
  transition: var(--transition-base);
}

.product-card[style*="background-image"]:hover::after {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
}

.product-card h3,
.product-card .product-slogan,
.product-card .status-badge {
  position: relative;
  z-index: 2;
}

.product-card-disabled {
  cursor: default;
}

.product-card-disabled[style*="background-image"]:hover::after {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.product-card h3 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-xs);
  letter-spacing: -0.02em;
}

.product-card .product-slogan {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-weight: 500;
}

/* ===== Module: Overview ===== */
.module-overview {
  padding: var(--spacing-2xl) 0;
}

.overview-text {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-secondary);
}

/* ===== Module: Core Values ===== */
.module-core-values {
  padding: var(--spacing-2xl) 0;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.value-card {
  background: var(--bg-primary);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--color-lazy-a), var(--color-lazy-c));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.value-card h4 {
  margin-bottom: var(--spacing-sm);
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ===== Module: Features ===== */
.module-features {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  margin: var(--spacing-2xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.feature-image-container {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-tertiary);
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.feature-card h4 {
  margin-bottom: var(--spacing-xs);
}

/* ===== Module: Media Gallery ===== */
.module-gallery {
  padding: var(--spacing-2xl) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.gallery-item {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.gallery-item::before,
.feature-image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(0.9);
  transform: scale(1.1);
  z-index: 1;
}

/* ===== Module: Testimonials ===== */
.module-testimonials {
  padding: var(--spacing-2xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.testimonial-card {
  background: var(--bg-primary);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  font-size: 4rem;
  color: var(--bg-tertiary);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-lazy-a), var(--color-lazy-c));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.testimonial-user {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* ===== Module: Download/CTA ===== */
.module-download {
  padding: var(--spacing-3xl) 0;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  margin: var(--spacing-2xl) 0;
  text-align: center;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: var(--spacing-xl);
}

.download-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 14px 24px;
  background: var(--text-primary);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition-base);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.download-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.download-btn svg,
.download-btn .icon {
  width: 24px;
  height: 24px;
}

/* Download badge styles for official SVG images */
.download-btn-badge {
  padding: 0;
  background: transparent;
}

.download-btn-badge:hover {
  transform: translateY(-2px);
  background: transparent;
}

.download-badge {
  height: 54px;
  width: auto;
  display: block;
}

.download-btn-badge:disabled .download-badge {
  opacity: 0.5;
  filter: grayscale(1);
}

/* ===== Module: Social Links ===== */
.module-social {
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-md);
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 10px 18px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: var(--transition-base);
}

.social-link:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-badge {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

/* ===== Module: Legal & Compliance ===== */
.module-legal {
  padding: var(--spacing-xl) 0;
  border-top: 1px solid var(--bg-tertiary);
  margin-top: var(--spacing-2xl);
}

.legal-links {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-md);
}

.legal-link {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

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

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: var(--spacing-2xl) 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--bg-tertiary);
  margin-top: var(--spacing-3xl);
}

/* ===== Utilities ===== */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

/* ===== Product Hero Redesign ===== */
.product-hero {
  padding: var(--spacing-1xl) var(--spacing-xl);
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: var(--spacing-3xl);
  width: 100%;
}

.hero-narrative {
  margin-bottom: var(--spacing-lg);
}

/* ===== Hero Scenarios ===== */
.hero-scenario-item {
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-md);
  border-left: 4px solid var(--color-lazy-a);
}

.hero-scenario-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-lazy-c);
  /* Using another brand color for contrast or keep same? User didn't specify. Lazy-C is blue, nice for headers. */
  margin-bottom: 4px;
}

.hero-scenario-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 8px;
  white-space: pre-line;
}

.hero-scenario-summary {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Backward compatibility for plain string scenarios */
.hero-scenario {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  border-left: 4px solid var(--color-lazy-a);
  padding-left: var(--spacing-md);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-xs);
  line-height: 1.1;
}

.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1), -10px -10px 40px rgba(255, 255, 255, 0.5);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.btn-large {
  padding: 16px 48px;
  font-size: 1.1rem;
}

/* ===== Trademark Disclaimer ===== */
.trademark-disclaimer {
  margin-top: var(--spacing-2xl);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

/* ===== Product Card with Image Support ===== */
.product-card {
  position: relative;
  z-index: 1;
}

/* ===== Footer Styles ===== */
.home-footer {
  text-align: center;
  padding: var(--spacing-2xl) 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--bg-tertiary);
  margin-top: var(--spacing-3xl);
}

/* ===== Responsive Updates ===== */
@media (max-width: 780px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-xl);
  }

  .hero-image-container {
    margin-top: var(--spacing-0xl);
  }

  .hero-title {
    font-size: 2.8rem;
  }
}

/* ===== Mobile Typography Enhancements ===== */
@media (max-width: 768px) {

  /* Container adjustments for mobile */
  .container {
    padding: 0 var(--spacing-md);
  }

  /* Hero section mobile optimization */
  .hero {
    padding: var(--spacing-2xl) var(--spacing-md);
    border-radius: var(--radius-lg);
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.3;
  }

  .hero .slogan {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
  }

  /* Improved paragraph spacing for better readability */
  .hero p {
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
  }

  /* Typography scale adjustments */
  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* Section spacing reduction */
  .section {
    padding: var(--spacing-2xl) 0;
  }

  .section-sm {
    padding: var(--spacing-xl) 0;
  }

  /* Product grid optimization */
  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .product-card {
    min-height: 180px;
  }

  .product-card h3 {
    font-size: 1.5rem;
  }

  /* Button adjustments */
  .btn-large {
    padding: 14px 32px;
    font-size: 1rem;
  }

  /* Navigation adjustments */
  .lang-switcher {
    gap: 4px;
    padding: 4px;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 0.75rem;
  }

  /* Reduce spacing in general */
  .hero-content {
    max-width: 100%;
  }
}

/* ===== Extra small devices ===== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 1.75rem !important;
  }

  .hero .slogan {
    font-size: 0.9375rem;
  }

  h2 {
    font-size: 1.375rem;
  }

  .product-card h3 {
    font-size: 1.375rem;
  }

  /* Tighter spacing for very small screens */
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero {
    padding: var(--spacing-xl) var(--spacing-sm);
  }
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===== Loading State ===== */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* ===== Hidden ===== */
.hidden {
  display: none !important;
}

/* ===== Legal Page Rendering ===== */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-xl) 0;
}

.legal-content {
  padding: var(--spacing-2xl);
  line-height: 1.7;
}

.legal-content h1, 
.legal-content h2, 
.legal-content h3 {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

.legal-content p {
  margin-bottom: var(--spacing-md);
}

.legal-content ul, 
.legal-content ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-xl);
}

.legal-content li {
  margin-bottom: var(--spacing-xs);
}