@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #1A2B3C;
  --accent: #C5A059;
  --bg: #F7F5F0;
  --text: #2C2C2C;
  --light-gray: #E8E5DF;
  --white: #FFFFFF;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 24px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #B38F4D;
}

.header {
  background: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.header-notice {
  font-size: 0.8rem;
  background: var(--light-gray);
  padding: 4px 12px;
  border-radius: 20px;
  color: #666;
}

.burger {
  display: none !important;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
}

.nav a {
  font-weight: 500;
  color: var(--primary);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

section {
  padding: 48px 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  margin-top: 48px;
}

.blog-layout > *,
.blog-main,
.blog-sidebar,
.product-hero-inner > *,
.checkout-grid > *,
.features-uniform-grid > *,
.steps-grid > *,
.product-reviews-grid > * {
  min-width: 0;
  max-width: 100%;
}

.article-header {
  margin-bottom: 40px;
}

.article-hero-media {
  margin-bottom: 24px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.article-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--light-gray);
}

.meta-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.meta-info strong {
  display: block;
  font-size: 1rem;
  color: var(--primary);
}

.meta-info span {
  font-size: 0.9rem;
  color: #666;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 32px;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
}

.verdict-box {
  display: flex;
  gap: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #2C425A 100%);
  color: var(--white);
  padding: 32px;
  border-radius: 20px;
  margin: 32px 0;
  align-items: center;
}

.verdict-score {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.verdict-score span {
  font-size: 1.5rem;
  color: #ccc;
}

.test-block {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.test-block img {
  margin-top: 20px;
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.inline-reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.inline-reviews blockquote {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border-left: 4px solid var(--accent);
  margin: 0;
}

.inline-reviews cite {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
}

.comments-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--light-gray);
}

.comment {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-gray);
}

.comment-avatar img {
  border-radius: 50%;
  object-fit: cover;
}

.comment-body strong {
  color: var(--primary);
}

.comment-body span {
  font-size: 0.85rem;
  color: #888;
  margin-left: 8px;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-widget {
  text-align: center;
}

.widget-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.widget-rating {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.widget-rating span {
  color: #666;
  font-size: 0.9rem;
}

.widget-price {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
}

.widget-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.widget-features li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
}

.widget-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.author-widget {
  text-align: center;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--bg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-hero {
  padding: 64px 0;
}

.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, #F7F5F0 0%, #E8E5DF 100%);
  border-radius: 32px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.product-media {
  position: relative;
  z-index: 2;
}

.product-media img {
  border-radius: 50% 20% 50% 20%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  aspect-ratio: 1/1;
  object-fit: cover;
  transform: rotate(-5deg);
}

.product-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-rating {
  margin: 16px 0;
  font-size: 1.1rem;
}

.product-rating span {
  color: var(--accent);
}

.product-desc {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #555;
}

.product-features-list {
  list-style: none;
  margin-bottom: 32px;
}

.product-features-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.product-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.product-price {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 1.5rem;
}

.price-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 20px;
}

.bento-item {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  overflow: hidden;
  position: relative;
}

.bento-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--primary) 0%, #2C425A 100%);
  color: var(--white);
}

.bento-item:nth-child(1) h3, .bento-item:nth-child(1) p { color: var(--white); }

.bento-item:nth-child(1) img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  opacity: 0.8;
  border-radius: 0;
}

.bento-item:nth-child(2) { grid-column: span 2; }

.bento-item img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 16px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
}

.step-img-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
}

.step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  margin: 0;
}

.step-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  border: 3px solid var(--white);
}

.step-card h3 {
  margin-bottom: 8px;
}

.step-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-reviews-grid {
  column-gap: 20px;
}

.product-review-card {
  break-inside: avoid;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-stars {
  color: var(--accent);
  font-size: 1.2rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
}

.expert-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.expert-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid var(--bg);
}

.expert-name {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--primary);
  color: var(--white);
  padding: 48px;
  border-radius: 24px;
}

.guarantee-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent) 0%, #B38F4D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3.5rem;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.guarantee-text h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.guarantee-text p {
  margin-bottom: 24px;
  opacity: 0.9;
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .guarantee-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
}

.guarantee-text p {
  margin-bottom: 24px;
  opacity: 0.9;
}

.checkout-section {
  padding: 48px 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}

.packages-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.package-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.package-card:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.2);
}

.package-card input {
  position: absolute;
  opacity: 0;
}

.package-card img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
}

.package-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-info h3 {
  margin-bottom: 4px;
}

.package-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.package-discount {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

.best-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.checkout-form-wrap {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary);
}

.form-group input,
.form-group select {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.payment-methods {
  display: flex;
  gap: 16px;
}

.payment-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.payment-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(197, 160, 89, 0.1);
  color: var(--primary);
}

.payment-option input {
  display: none;
}

.card-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: 12px;
}

.order-summary {
  padding: 20px;
  background: var(--bg);
  border-radius: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 1rem;
}

.summary-row.total {
  border-top: 1px solid var(--light-gray);
  padding-top: 12px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 1.1rem;
}

.secure-text {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--light-gray) 100%);
}

.thanks-container {
  background: var(--white);
  padding: 64px 48px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.thanks-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
}

.thanks-text {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #555;
}

.thanks-text span {
  font-weight: 600;
  color: var(--primary);
}

.thanks-container .btn {
  margin-top: 24px;
}

.footer {
  background: var(--primary);
  color: var(--white);
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer .logo-text {
  color: var(--white);
}

.footer .header-notice {
  background: rgba(255,255,255,0.1);
  color: #ccc;
}

.disclaimer {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.5;
}

.copyright {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #ccc;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  .blog-layout, .product-hero-inner, .expert-inner, .checkout-grid {
    grid-template-columns: 1fr;
  }
  .sidebar-sticky {
    position: static;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .bento-item:nth-child(2) { grid-column: span 2; }
  .steps-grid, .product-reviews-grid {
    columns: 1;
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .guarantee-inner {
    flex-direction: column;
    text-align: center;
  }
  .inline-reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .header-inner {
    justify-content: center;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-item:nth-child(1), .bento-item:nth-child(2) {
    grid-column: span 1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-notice {
    word-break: break-all;
  }
  .logo {
    flex-direction: column;
  }
  .logo-text {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }
  .footer-col {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  .checkout-form-wrap,
  .legal-content,
  .thanks-container,
  .test-block,
  .verdict-box {
    padding: 20px 16px;
  }
  h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

.sidebar-widget.product-widget {
    margin: 20px 0;
}

.features-uniform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card-uniform {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature-card-uniform:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent) 0%, #B38F4D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.feature-card-uniform h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--primary);
}

.feature-card-uniform p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .features-uniform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-uniform-grid {
    grid-template-columns: 1fr;
  }
}

.legal-content {
  max-width: 800px;
  margin: 48px auto;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  word-break: break-word;
}

.legal-content h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.legal-content .legal-date {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 32px;
  display: block;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--primary);
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--primary);
}

.legal-content h4 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--primary);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin: 16px 0;
  padding-left: 1.5rem;
  color: #444;
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-content {
    margin: 24px auto;
    padding: 24px 16px;
  }
  .legal-content h1 {
    font-size: 1.8rem;
  }
  .legal-content h2 {
    font-size: 1.4rem;
  }
}