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

:root {
  --y: #F5B700;
  --yl: #FFF8E1;
  --dark: #1a1a1a;
  --gray: #666;
  --light: #f7f7f7;
  --white: #fff;
  --page: #fff;
  --card: #fff;
  --ink: #1a1a1a;
  --nav-bg: #fff;
  --line: #f0f0f0;
  --toggle-bg: rgba(26, 26, 26, 0.08);
  --hero: var(--y);
  --nav-h: 66px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  color-scheme: light;
}

[data-theme="dark"] {
  color-scheme: dark;
  --yl: rgba(245, 183, 0, 0.16);
  --gray: rgba(255, 255, 255, 0.62);
  --light: #111;
  --white: #111;
  --page: #111;
  --card: #2c2c2c;
  --ink: #fff;
  --nav-bg: #111;
  --line: rgba(255, 255, 255, 0.12);
  --toggle-bg: rgba(255, 255, 255, 0.08);
  --hero: #111;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background: var(--page);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav-logo span {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  list-style: none;
}

.nav-links a:not(.nav-social-link):not(.nav-cta) {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:not(.nav-social-link):not(.nav-cta):hover,
.nav-links a.active {
  color: var(--y);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--toggle-bg);
  text-decoration: none;
  transition: color 0.15s, background 0.15s, transform 0.15s;
}

.nav-social-link:hover {
  color: #fff;
  background: var(--y);
  transform: translateY(-1px);
}

.nav-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-cta {
  background: var(--y);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  padding: 10px 22px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.85;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.theme-toggle,
.nav-toggle {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--toggle-bg);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
}

.theme-toggle:hover,
.nav-toggle:hover {
  background: var(--toggle-bg);
  transform: translateY(-1px);
}

.theme-toggle:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--y);
  outline-offset: 2px;
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle__sun {
  display: none;
}

[data-theme="dark"] .theme-toggle__sun {
  display: block;
}

[data-theme="dark"] .theme-toggle__moon {
  display: none;
}

.nav-links-cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 48px 36px;
}

[data-theme="dark"] footer {
  background: var(--light);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand img {
  width: 44px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.footer-brand h3 {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 220px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--y);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
}

.footer-bottom p {
  font-size: 13px;
}

.footer-bottom p a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s;
}

.footer-bottom p a:hover {
  color: var(--y);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon:hover {
  color: var(--y);
}

.section-tag {
  display: inline-block;
  background: var(--yl);
  color: var(--y);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-h {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}

.section-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

.mail-link {
  color: var(--y);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fu {
  animation: fadeUp 0.7s ease forwards;
}

.fu2 {
  animation-delay: 0.15s;
  opacity: 0;
}

.fu3 {
  animation-delay: 0.3s;
  opacity: 0;
}

.fu4 {
  animation-delay: 0.45s;
  opacity: 0;
}

.hero {
  min-height: 100vh;
  background: var(--hero);
  display: flex;
  align-items: center;
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.hero-text {
  flex: 1;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 em {
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
}

[data-theme="dark"] .hero h1 em {
  color: var(--y);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-w,
.btn-ghost {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: 14px;
  padding: 15px 26px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-w {
  color: var(--dark);
}

.btn-ghost {
  color: var(--dark);
}

.btn-w:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-ghost:hover {
  background: #f5f5f5;
}

.hero-phones {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}

.phone {
  width: 210px;
  border-radius: 36px;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.28));
  transition: transform 0.35s;
}

.phone:first-child {
  transform: rotate(-6deg) translateY(24px);
  z-index: 1;
}

.phone:last-child {
  transform: rotate(4deg) translateY(10px);
  margin-left: -36px;
  z-index: 2;
}

.phone:hover {
  transform: rotate(0) scale(1.04) translateY(-4px) !important;
  z-index: 10;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s, transform 0.2s;
}

.hero-scroll:hover {
  color: #fff;
}

.hero-scroll svg {
  width: 22px;
  height: 22px;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll svg {
    animation: none;
  }
}

.stats {
  padding: 56px 48px;
  background: var(--light);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: center;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 20px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.stat h3 {
  font-size: 40px;
  font-weight: 900;
  color: var(--y);
  margin-bottom: 4px;
}

.stat p {
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
}

.features {
  padding: 96px 48px;
  background: var(--light);
}

.feat-header {
  text-align: center;
  margin-bottom: 56px;
}

.feat-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feat-card {
  background: var(--card);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.feat-icon {
  width: 50px;
  height: 50px;
  background: var(--yl);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.feat-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.screenshots {
  padding: 96px 0;
  background: var(--page);
  overflow: hidden;
}

.screenshots .section-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 48px;
}

.screens-track {
  display: flex;
  gap: 22px;
  padding: 10px 0 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.screen-item {
  flex: 0 0 auto;
  text-align: center;
}

.screen-item img {
  width: 222px;
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s;
}

.screen-item img:hover {
  transform: translateY(-8px) scale(1.02);
}

.screen-item p {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
}

.off {
  padding: 96px 48px;
  background: #fff;
}

[data-theme="dark"] .stats,
[data-theme="dark"] .features,
[data-theme="dark"] .screenshots,
[data-theme="dark"] .off {
  background: var(--dark);
}

.off-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.7fr;
  gap: 48px;
  align-items: stretch;
}

.off-text .section-h {
  color: var(--ink);
}

.off-text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 540px;
}

.off-text p strong {
  color: var(--ink);
}

[data-theme="dark"] .off-text .section-tag {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

[data-theme="dark"] .off-text .section-h,
[data-theme="dark"] .off-text p strong {
  color: #fff;
}

[data-theme="dark"] .off-text p {
  color: rgba(255, 255, 255, 0.9);
}

.off-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--y);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 8px;
  transition: transform 0.2s, opacity 0.2s;
}

.off-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

[data-theme="dark"] .off-link {
  background: #fff;
  color: var(--dark);
}

.off-stats {
  display: grid;
  gap: 12px;
}

.off-stat {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.off-stat h4 {
  font-size: 28px;
  font-weight: 900;
  color: var(--y);
  line-height: 1.1;
}

.off-stat p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 700;
  margin: 0;
}

[data-theme="dark"] .off-stat {
  background: rgba(255, 255, 255, 0.16);
  border: 0;
}

[data-theme="dark"] .off-stat h4 {
  color: #fff;
}

[data-theme="dark"] .off-stat p {
  color: rgba(255, 255, 255, 0.75);
}

.split-band {
  background: var(--y);
  padding: 80px 48px;
}

[data-theme="dark"] .split-band {
  background: var(--dark);
}

.split-band .section-tag {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.france-section {
  padding: 0 48px 0 0;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.france-inner {
  max-width: 420px;
  margin: 0 auto;
}

.france-badge {
  font-size: 56px;
  margin-bottom: 20px;
}

.france-section .section-h,
.download .section-h {
  color: #fff;
}

.france-section p {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  margin-top: 12px;
}

.download {
  padding: 0 0 0 48px;
  background: transparent;
  text-align: center;
}

.download-inner {
  max-width: 560px;
  margin: 0 auto;
}

.download p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 40px;
  margin-top: 12px;
}

.store-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--dark);
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 24px;
  transition: transform 0.2s, background 0.2s;
}

.store-btn:hover {
  transform: translateY(-2px);
  background: #f0f0f0;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-btn small {
  font-size: 10px;
  opacity: 0.65;
  font-weight: 600;
}

.store-btn strong {
  font-size: 16px;
  font-weight: 800;
}

.store-btn svg,
.btn-w svg,
.btn-ghost svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.icon-apple {
  fill: currentColor;
}

.page-hero {
  padding: 140px 48px 70px;
  background: var(--y);
  text-align: center;
}

[data-theme="dark"] .page-hero {
  background: var(--light);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 460px;
  margin: 0 auto;
}

.page-hero .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 48px 96px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin: 40px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content li {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 6px;
}

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

.legal-date {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 40px;
  font-weight: 600;
}

.networks {
  padding: 80px 48px;
  max-width: 800px;
  margin: 0 auto;
}

.network-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--card);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.network-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
}

.network-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--light);
  color: var(--ink);
}

.network-logo svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.network-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.network-info p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.network-arrow {
  margin-left: auto;
  font-size: 20px;
  color: var(--y);
}

.external-link {
  color: var(--ink);
}

.external-link:hover {
  color: var(--y);
}

footer .external-link {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 6px;
    margin-left: 0;
    padding: 20px 24px 28px;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  }

  nav.is-open .nav-links {
    display: flex;
  }

  .nav-links a:not(.nav-social-link):not(.nav-cta) {
    display: block;
    padding: 16px 18px;
    font-size: 16px;
    border-radius: 12px;
  }

  .nav-links a:not(.nav-social-link):not(.nav-cta):hover,
  .nav-links a.active {
    background: var(--toggle-bg);
  }

  .nav-social {
    justify-content: center;
    margin: 4px 0 0;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .nav-links-cta {
    display: block;
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .nav-links-cta .nav-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px 22px;
  }

  .nav-links-cta .nav-cta:hover {
    background: var(--y);
  }

  footer {
    padding: 48px 20px 28px;
  }

  .hero {
    min-height: 0;
    padding: 88px 20px 60px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-inner {
    flex-direction: column;
    gap: 40px;
  }

  .hero-phones {
    justify-content: center;
  }

  .phone {
    width: 150px;
    border-radius: 20px;
    filter: none;
  }

  .stats {
    padding: 40px 20px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features {
    padding: 60px 20px;
  }

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

  .screenshots .section-header {
    padding: 0 20px;
  }

  .screens-track {
    padding: 10px 20px 24px;
  }

  .off {
    padding: 60px 20px;
  }

  .off-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-band {
    padding: 60px 20px;
  }

  .split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .france-section,
  .download {
    padding: 0;
  }

  .france-section {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
  }

  .download {
    padding-top: 8px;
  }

  .page-hero {
    padding: 110px 20px 50px;
  }

  .legal-content {
    padding: 40px 20px 60px;
  }

  .networks {
    padding: 48px 20px;
  }
}
