:root {
  /* Backgrounds */
  --bg: #000000;
  --bg-alt: #0a0a0a;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --surface-3: #242424;
  --border: #2a2a2a;
  --border-strong: #3a3a3a;

  /* Lavender accent family (used sparingly) */
--lavender: #a78bfa;
--lavender-strong: #8b5cf6;
--lavender-deep: #7c3aed;
--lavender-soft: #d8ccfc;
--lavender-pale: #f3efff;

  /* Text */
  --text: #ffffff;
  --text-secondary: #999999;
  --text-muted: #555555;
  --text-on-accent: #000000;

  /* Status accents */
  --stat-1: #555555;
  --stat-2: #777777;
  --stat-3: #999999;

  /* Layout */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;

  /* Fonts */
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ============================================================
   Reset / base
   ============================================================ */

   html, body {
  width: 100%;
  overflow-x: hidden;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: 90px;
}

img { max-width: 100%; display: block; }

a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--text); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

h2 span, h1 span { color: var(--text); }

section { padding: 90px 24px; }
section > h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 48px;
}

.btn, .arrow-link {
  display: inline-block;
  cursor: pointer;
  border: none;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 100px 60px;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.04), transparent 55%);
}

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

.gradient-text {
  font-size: 46px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--text), var(--text-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}

.gradient-text-small {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.zoom-in { animation: zoomIn .4s ease forwards; }
.zoom-out { animation: zoomOut .4s ease forwards; }
@keyframes zoomIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
@keyframes zoomOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(1.02); } }

.hero-buttons a {
  background: var(--lavender);
  color: var(--text-on-accent);
  font-weight: 600;
  padding: 10px 30px;
  border-radius: var(--radius-sm);
}
.hero-buttons a:hover { background: var(--lavender-strong); color: var(--text-on-accent); }

.hero-image img { max-width: 460px; }

/* TradingView widget */
.tradingview-widget-container {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}

/* ============================================================
   About
   ============================================================ */

.about { position: relative; overflow: hidden; background: var(--bg-alt); }

.about-coins { display: none; }

.about-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.stat-card h3 { font-size: 26px; color: var(--text); }
.stat-card p { color: var(--text-secondary); font-size: 13px; margin-top: 4px; }

.stat-card.green-dark { border-left: 3px solid var(--stat-1); }
.stat-card.green-emerald { border-left: 3px solid var(--stat-2); }
.stat-card.green-olive { border-left: 3px solid var(--stat-3); }

.about-image img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.about-text h2 { font-size: 30px; margin-bottom: 18px; }
.about-text p { color: var(--text-secondary); margin-bottom: 14px; font-size: 15px; }

.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 26px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 600;
}
.about-btn:hover { background: var(--text); color: var(--bg); }

/* Circle / feature cards */
.circle-container {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.connect-lines { position: absolute; top: 0; left: 0; pointer-events: none; }
.connect-lines path {
  fill: none;
  stroke: var(--border-strong);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
}

.feature-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  z-index: 1;
}
.feature-card i {
  font-size: 24px;
  color: var(--lavender);
  margin-bottom: 10px;
  display: block;
}
.feature-card h3 { font-size: 16px; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-secondary); }

/* ============================================================
   Products
   ============================================================ */

#products { position: relative; overflow: hidden; }
.products-bg { display: none; }

.products-slider {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color .15s ease, transform .15s ease;
}
.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.product-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--text); }
.product-card p { font-size: 13.5px; color: var(--text-secondary); margin-bottom: 16px; }

.arrow-link { color: var(--text); font-weight: 600; font-size: 14px; }
.arrow-link::after { content: ' \2192'; }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }

/* ============================================================
   Onboarding steps
   ============================================================ */

#create-account { background: var(--bg-alt); }

.steps-wrapper {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 26px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease;
}
.step.show { opacity: 1; transform: translateY(0); }

.step-number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--text-on-accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 { font-size: 16px; margin-bottom: 4px; }
.step-content p { font-size: 13.5px; color: var(--text-secondary); }

/* ============================================================
   Pricing
   ============================================================ */

.pricing-container { max-width: var(--container); margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.pricing-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
}

.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.pricing-card h3 { font-size: 18px; margin-bottom: 18px; }

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}
.pricing-card ul li {
  font-size: 13.5px;
  color: var(--text-secondary);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-card .btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-weight: 600;
}
.pricing-card .btn:hover { background: var(--text); color: var(--bg); }

.pricing-card.highlight-card {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 1px var(--border-strong);
}
.pricing-card.highlight-card .btn {
  background: var(--lavender);
  color: var(--text-on-accent);
}

/* ============================================================
   Testimonials
   ============================================================ */

#testimonials { background: var(--bg-alt); }

.section-header {
  max-width: var(--container);
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-header h2 { text-align: left; margin: 0; }
.section-header .btn {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  background: var(--lavender);
  color: var(--text-on-accent);
  font-weight: 600;
}
.section-header .btn:hover { background: var(--lavender-strong); color: var(--text-on-accent); }

.testimonial-wrapper { max-width: var(--container); margin: 0 auto; overflow: hidden; }
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.client-top { margin-bottom: 14px; }
.client-top img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid var(--border-strong);
}
.client-top h4 { font-size: 15px; }
.client-top .location { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 6px; }
.stars i { color: var(--lavender); font-size: 13px; margin-right: 2px; }

.testimonial-card p { font-size: 13.5px; color: var(--text-secondary); }

/* ============================================================
   FAQ — single shared FAQ stylesheet used by ALL pages
   ============================================================ */

.faq-container { max-width: 820px; margin: 0 auto; }
.faq-container h2 { text-align: center; margin-bottom: 40px; }
.faq-container h3 {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 36px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--surface-2);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: background .15s ease;
}
.faq-question:hover { background: var(--surface-3); }

.faq-icon {
  color: var(--lavender);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 22px;
}
.faq-answer p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  padding-bottom: 14px;
}
.faq-answer ul {
  list-style: disc;
  padding-left: 20px;
  margin: 8px 0 14px;
  color: var(--text-secondary);
}
.faq-answer ul li { font-size: 14px; padding: 4px 0; }

.faq-item.active .faq-answer { max-height: 800px; }
.faq-item.active { border-color: var(--border-strong); }
.faq-item.active .faq-icon { transform: rotate(45deg); }


/* ============================================================
   Product Pages — Hero with video background
   ============================================================ */

.page-card { overflow: hidden; }

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay,
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.hero h1 span { color: var(--text); }

.hero p {
  font-size: 17px;
  color: var(--text-secondary);
}

/* Product description section */
.product-description {
  padding: 80px 24px;
}

.product-description .container {
  max-width: var(--container);
  margin: 0 auto;
}

.product-description h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.product-description p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 900px;
}

/* Fade-in animation for product sections */
.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   About Page
   ============================================================ */

.who-section {
  padding: 90px 24px;
  background: var(--bg-alt);
}

.who-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.who-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.who-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.who-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.who-card .who-icon {
  font-size: 24px;
  color: var(--lavender);
  margin-bottom: 10px;
  display: block;
}

.who-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.who-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.who-image img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  width: 100%;
}

/* Highlights */
.highlights {
  padding: 80px 24px;
  position: relative;
}

.highlights .container {
  max-width: var(--container);
  margin: 0 auto;
}

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

.highlights .card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color .15s ease, transform .15s ease;
}

.highlights .card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.highlights .card i {
  font-size: 28px;
  color: var(--lavender);
  margin-bottom: 12px;
  display: block;
}

.highlights .card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.highlights .card span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Highlight Cards (row-cards) */
.highlights-section {
  padding: 0 24px 90px;
}

.highlights-section .container {
  max-width: var(--container);
  margin: 0 auto;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.row-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: opacity .5s ease, transform .5s ease;
}

.row-card.show {
  opacity: 1;
  transform: translateY(0);
}

.row-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.card-row.reverse {
  direction: rtl;
}

.card-row.reverse > * {
  direction: ltr;
}

.card-row img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

.card-copy p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   Contact Page
   ============================================================ */

.contact-modern {
  padding: 0;
}

.contact-details {
  padding: 90px 24px 40px;
}

.contact-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.contact-icon {
  font-size: 22px;
  color: var(--lavender);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item span {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.map-full {
  width: 100%;
  height: 400px;
}

.map-full iframe {
  width: 100%;
  height: 100%;
}

/* ============================================================
   Platform Page
   ============================================================ */

.platform-layout {
  padding: 90px 24px;
}

.platform-layout .container {
  max-width: var(--container);
  margin: 0 auto;
}

.platform-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.page-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.page-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.cta {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}

.cta__subscribe h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}

.cta__subscribe h2 span { color: var(--text); }

.store-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.store-row img {
  height: 48px;
  width: auto;
  transition: transform .15s ease;
}

.store-row img:hover {
  transform: scale(1.05);
}

/* ============================================================
   Responsive — Tablet (1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .about-container { grid-template-columns: 1fr; }
  .products-slider { grid-template-columns: repeat(2, 1fr); }
  .testimonial-track { grid-template-columns: repeat(2, 1fr); }

  .who-container { grid-template-columns: 1fr; gap: 40px; }
  .who-cards { grid-template-columns: 1fr 1fr; }

  .platform-layout-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   Responsive — Mobile (768px)
   ============================================================ */

@media (max-width: 768px) {
  body { overflow-x: hidden; }
  section { padding: 60px 16px; }
  section > h2 { font-size: 26px; margin-bottom: 32px; }

  /* Hero */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    gap: 32px;
  }
  .hero-content { max-width: 100%; }
  .gradient-text { font-size: 28px; }
  .gradient-text-small { font-size: 15px; }
  .hero-buttons a { padding: 12px 24px; font-size: 14px; }
  .hero-image img { max-width: 100%; }
  .hero h1 { font-size: 28px; }

  /* Product hero with video */
  .hero-video { width: 100%; height: 100%; }
  .hero-overlay, .overlay { background: rgba(0, 0, 0, 0.65); }

  /* Products */
  .products-slider { grid-template-columns: 1fr; }
  .testimonial-track { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* About */
  .about-container { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-text h2 { font-size: 24px; }
  .about-text p { font-size: 14px; }

  /* Circle container — hide SVG lines, simplify grid */
  .circle-container {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 16px;
  }
  .connect-lines { display: none; }

  /* Who section */
  .who-container { grid-template-columns: 1fr; gap: 32px; }
  .who-cards { grid-template-columns: 1fr; }
  .card-row, .card-row.reverse {
    flex-direction: column;
  }
  .card-row img {
    width: 100%;
    height: auto;
  }

  /* Highlights */
  .grid-4 { grid-template-columns: 1fr 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-wrapper { gap: 16px; }
  .step { padding: 16px 18px; gap: 14px; }
  .step-number { width: 36px; height: 36px; font-size: 14px; }
  .step-content h3 { font-size: 14px; }
  .step-content p { font-size: 12.5px; }

  /* FAQ */
  .faq-question { font-size: 14px; padding: 14px 16px; }
  .faq-answer p { font-size: 13px; }

  /* Product description */
  .product-description { padding: 50px 20px; }
  .product-description h2 { font-size: 24px; }
  .product-description p { font-size: 14px; }

  /* Hero on product pages */
  .hero { padding: 50px 20px; }

  /* About page */
  .who-section { padding: 60px 16px; }
  .section-title { font-size: 24px; }
  .who-text { font-size: 14px; }
  .highlights { padding: 50px 16px; }
  .highlights-section { padding: 0 16px 60px; }
  .row-card { padding: 20px; }
  .row-card h3 { font-size: 17px; }

  /* Contact */
  .contact-details { padding: 60px 16px 30px; }
  .contact-title { font-size: 26px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-full { height: 280px; }

  /* Platform */
  .platform-layout { padding: 60px 16px; }
  .platform-layout-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-title { font-size: 24px; }
  .page-desc { font-size: 14px; }
  .cta { padding: 28px 20px; }
  .cta__subscribe h2 { font-size: 22px; }
  .store-row img { height: 42px; }

  /* Testimonials */
  .testimonial-card { padding: 20px; }
}

/* ============================================================
   Responsive — Small phone (480px)
   ============================================================ */

@media (max-width: 480px) {
  .gradient-text { font-size: 24px; }
  .hero { padding: 44px 16px; }
  section > h2 { font-size: 22px; }

  .grid-4 { grid-template-columns: 1fr; }

  .contact-title { font-size: 22px; }
  .contact-item { flex-direction: column; gap: 10px; }

  .page-title { font-size: 20px; }
}

/* ============================================================
   Legal pages (inline-styled in blade)
   ============================================================ */

@media (max-width: 768px) {
  .legal-page { padding: 60px 16px; }
  .legal-page__container h1 { font-size: 26px; }
}

@media (max-width: 480px) {
  .legal-page { padding: 50px 16px; }
  .legal-page__container h1 { font-size: 22px; }
  .legal-page__container p { font-size: 14px; }
}