:root {
  --black: #111111;
  --dark: #1a1a1a;
  --red: #d9281d;
  --red-dark: #a81009;
  --yellow: #f3c51b;
  --yellow-light: #fff0a5;
  --cream: #f4ead5;
  --white: #ffffff;
  --gray: #5d5d5d;
  --blue: #145e90;

  --shadow-black: 8px 8px 0 var(--black);
  --shadow-red: 8px 8px 0 var(--red);
  --shadow-yellow: 8px 8px 0 var(--yellow);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

main,
#quarto-content,
.page-columns,
.content {
  max-width: none;
  margin: 0;
  padding: 0;
}

.quarto-title-block,
#title-block-header {
  display: none;
}

.page-width {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--black);
  line-height: 1.1;
}

h1,
h2,
.price {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 20px;
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

strong {
  font-weight: 900;
}

/* Top bar */

.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: var(--black);
  border-bottom: 4px solid var(--yellow);
}

.top-bar-inner {
  min-height: 58px;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.top-bar-inner strong {
  color: var(--yellow);
}

.top-bar-inner a {
  padding: 7px 12px;
  color: var(--black);
  background: var(--yellow);
  border: 3px solid var(--white);
  box-shadow: 3px 3px 0 var(--red);
}

/* Hero */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 82px;
  background:
    linear-gradient(rgba(244, 234, 213, 0.96), rgba(244, 234, 213, 0.96)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 17px,
      rgba(17, 17, 17, 0.05) 17px,
      rgba(17, 17, 17, 0.05) 34px
    );
  border-bottom: 7px solid var(--black);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 55px;
  align-items: center;
}

.hero-copy h1 {
  color: var(--black);
  animation: headlineIn 0.6s ease-out both;
}

.hero-copy > h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 900;
  text-transform: none;
  color: var(--red);
}

.hero-copy > p {
  max-width: 700px;
  font-size: 1.06rem;
}

.warning-label {
  display: inline-block;
  padding: 9px 13px;
  color: var(--black);
  background: var(--yellow);
  border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 28px;
}

.hero-facts span {
  padding: 8px 12px;
  background: var(--white);
  border: 3px solid var(--black);
  font-size: 0.85rem;
  font-weight: 900;
}

.hero-image {
  animation: posterFloat 4s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  display: block;
  border: 7px solid var(--black);
  box-shadow: 13px 13px 0 var(--red);
  transform: rotate(1deg);
}

/* Product proof in the hero */

.hero-proof {
  position: relative;
  padding: 16px;
  background: var(--white);
  border: 6px solid var(--black);
  box-shadow: 13px 13px 0 var(--red);
  transform: rotate(0.7deg);
}

.hero-proof img {
  width: 100%;
  display: block;
  border: 2px solid rgba(17, 17, 17, 0.2);
}

.proof-label {
  position: absolute;
  top: -24px;
  left: 18px;
  z-index: 2;
  padding: 8px 11px;
  color: var(--black);
  background: var(--yellow);
  border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.image-caption {
  margin: 13px 4px 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Buttons */

.primary-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  color: var(--white);
  background: var(--red);
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  animation: buttonPulse 2.8s ease-in-out infinite;
}

.primary-button:hover {
  color: var(--white);
  background: var(--red-dark);
  transform: translate(6px, 6px);
  box-shadow: none;
  animation: none;
}

.full-button {
  width: 100%;
}

.yellow-button {
  color: var(--black);
  background: var(--yellow);
}

.yellow-button:hover {
  color: var(--black);
  background: var(--white);
}

.micro-copy,
.final-meta {
  display: block;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 800;
}

/* Warning strip */

.warning-strip {
  overflow: hidden;
  color: var(--black);
  background:
    repeating-linear-gradient(
      -45deg,
      var(--yellow),
      var(--yellow) 22px,
      var(--black) 22px,
      var(--black) 44px
    );
  border-bottom: 5px solid var(--black);
}

.warning-strip-track {
  width: max-content;
  display: flex;
  gap: 36px;
  margin: 8px 0;
  padding: 10px 0;
  background: var(--yellow);
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}

.warning-strip-track span::after {
  margin-left: 36px;
  content: "●";
}

/* Sections */

.problem-section,
.solution-section {
  padding: 88px 0;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--black);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.light-tag {
  color: var(--black);
  background: var(--yellow);
}

.problem-section {
  background: var(--white);
}

.problem-section p,
.problem-section li {
  color: var(--gray);
  font-size: 1.04rem;
}

/* Big break */

.big-break {
  padding: 72px 0;
  color: var(--white);
  background: var(--red);
  border-top: 6px solid var(--black);
  border-bottom: 6px solid var(--black);
}

.big-break-inner {
  text-align: center;
}

.big-break h2,
.big-break h3 {
  color: var(--white);
}

.big-break h2 {
  max-width: 1000px;
  margin: 0 auto 12px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  text-shadow: 5px 5px 0 var(--black);
}

.big-break h3 {
  font-size: 1.35rem;
}

/* Features */

.solution-section {
  color: var(--white);
  background: var(--dark);
}

.solution-section h2,
.solution-section h3 {
  color: var(--white);
}

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

.feature-card {
  padding: 26px 22px;
  color: var(--black);
  background: var(--cream);
  border: 4px solid var(--black);
  box-shadow: 7px 7px 0 var(--yellow);
}

.feature-card h3 {
  color: var(--black);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--gray);
}

.feature-icon {
  margin-bottom: 12px;
  font-size: 2rem;
}

/* How it works */

.process-section {
  padding: 88px 0;
  background: var(--cream);
  border-bottom: 6px solid var(--black);
}

.section-lead {
  max-width: 820px;
  margin-bottom: 36px;
  color: var(--gray);
  font-size: 1.12rem;
}

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

.process-card {
  position: relative;
  padding: 58px 22px 25px;
  background: var(--white);
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--yellow);
}

.process-card h3 {
  font-size: 1.3rem;
}

.process-card p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.94rem;
}

.process-number {
  position: absolute;
  top: 14px;
  left: 18px;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--black);
  font-weight: 900;
}

.flow-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 38px 0 28px;
  padding: 16px;
  color: var(--white);
  background: var(--black);
  border: 4px solid var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

.flow-line b {
  color: var(--yellow);
  font-size: 1.3rem;
}

.section-button {
  display: flex;
  width: max-content;
  margin: 0 auto;
}

/* Screenshot proof */

.proof-section {
  padding: 88px 0;
  background: var(--white);
  border-bottom: 6px solid var(--black);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
  align-items: center;
}

.proof-copy h2 {
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.proof-copy p {
  color: var(--gray);
  font-size: 1.04rem;
}

.proof-image {
  padding: 12px;
  background: var(--cream);
  border: 5px solid var(--black);
  box-shadow: 10px 10px 0 var(--red);
  transform: rotate(-0.5deg);
}

.proof-image img {
  width: 100%;
  display: block;
}

.grade-note {
  max-width: 850px;
  margin: 42px auto 0;
  padding: 20px 24px;
  color: var(--black);
  background: var(--yellow);
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--red);
}

.grade-note p {
  margin: 6px 0 0;
}

/* Fit check */

.fit-section {
  padding: 82px 0;
  background: var(--yellow);
  border-bottom: 6px solid var(--black);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.fit-card {
  padding: 34px;
  border: 5px solid var(--black);
  box-shadow: 9px 9px 0 var(--black);
}

.fit-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.fit-card li {
  margin-bottom: 8px;
  font-weight: 700;
}

.fit-no {
  background: var(--cream);
}

.fit-yes {
  color: var(--white);
  background: var(--red);
}

.fit-yes h2 {
  color: var(--white);
}

/* FAQ */

.faq-section {
  padding: 88px 0;
  background: var(--white);
  border-bottom: 6px solid var(--black);
}

.faq-section details {
  margin-bottom: 14px;
  background: var(--cream);
  border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--yellow);
}

.faq-section summary {
  padding: 18px 52px 18px 20px;
  cursor: pointer;
  font-weight: 900;
  list-style-position: inside;
}

.faq-section details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--gray);
}

/* Reverse psychology block */

.reverse-section {
  padding: 75px 0;
  background: var(--yellow);
  border-top: 6px solid var(--black);
  border-bottom: 6px solid var(--black);
}

.reverse-inner {
  text-align: center;
}

.reverse-inner h2 {
  margin-bottom: 10px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.reverse-inner h3 {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 1.5rem;
}

.reverse-inner p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  font-weight: 700;
}

/* Offer */

.offer-section {
  padding: 90px 0;
  background:
    linear-gradient(rgba(244, 234, 213, 0.92), rgba(244, 234, 213, 0.92)),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 16px,
      rgba(17, 17, 17, 0.05) 16px,
      rgba(17, 17, 17, 0.05) 32px
    );
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 45px;
  align-items: center;
  padding: 42px;
  background: var(--white);
  border: 6px solid var(--black);
  box-shadow: 14px 14px 0 var(--red);
}

.offer-label {
  color: var(--white);
  background: var(--red);
}

.offer-copy h2 {
  margin-top: 22px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.offer-list {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.offer-list span {
  font-weight: 800;
}

.price-card {
  padding: 28px;
  text-align: center;
  background: var(--yellow);
  border: 5px solid var(--black);
  box-shadow: var(--shadow-black);
}

.price-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.price {
  margin: 10px 0 0;
  font-size: clamp(3.7rem, 6vw, 5.8rem);
}

.price-subtitle {
  display: block;
  margin-bottom: 22px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.turnus-box {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 3px solid var(--black);
  font-weight: 800;
}

/* Final CTA */

.final-section {
  padding: 82px 0;
  color: var(--white);
  background: var(--black);
  border-top: 6px solid var(--red);
}

.final-inner {
  text-align: center;
}

.final-section h2 {
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.final-section h3 {
  color: var(--yellow);
  font-size: 1.5rem;
}

.final-icon {
  display: block;
  margin-bottom: 12px;
  font-size: 3.8rem;
  animation: warningShake 2.2s ease-in-out infinite;
}

/* Footer */

.footer {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #050505;
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Animations */

@keyframes headlineIn {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.98);
  }

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

@keyframes posterFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(0.4deg);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes warningShake {
  0%,
  100% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }

  75% {
    transform: rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Tablet */

@media (max-width: 1000px) {
  .hero-grid,
  .offer-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-width: 720px;
  }

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

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

  .hero-proof {
    max-width: 820px;
  }
}

/* Mobile */

@media (max-width: 680px) {
  .page-width,
  .narrow {
    width: min(100% - 26px, 1160px);
  }

  .top-bar-inner {
    min-height: 68px;
    gap: 5px;
    flex-wrap: wrap;
    padding: 8px 0;
    font-size: 0.68rem;
    text-align: center;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .hero-section,
  .problem-section,
  .solution-section,
  .offer-section,
  .final-section {
    padding: 58px 0;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts span {
    padding: 8px;
    font-size: 0.74rem;
  }

  .primary-button {
    width: 100%;
    padding: 14px 12px;
    font-size: 0.88rem;
  }

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

  .process-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .process-section,
  .proof-section,
  .fit-section,
  .faq-section {
    padding: 58px 0;
  }

  .flow-line {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .flow-line b {
    transform: rotate(90deg);
  }

  .section-button {
    width: 100%;
  }

  .hero-proof {
    padding: 8px;
    border-width: 4px;
    box-shadow: 8px 8px 0 var(--red);
  }

  .proof-label {
    position: static;
    display: block;
    margin: -22px 8px 12px;
    text-align: center;
  }

  .fit-card {
    padding: 26px 22px;
  }

  .offer-grid {
    width: calc(100% - 16px);
    padding: 24px 18px;
    border-width: 4px;
    box-shadow: 9px 9px 0 var(--red);
  }

  .price {
    font-size: 4rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}

/* =================================================
   BIZALMI BLOKKOK + GARANCIA
================================================= */

.testimonial-section,
.about-section,
.expert-section,
.guarantee-section {
  padding: 88px 0;
}

.testimonial-section {
  background: var(--cream);
  border-top: 6px solid var(--black);
  border-bottom: 6px solid var(--black);
}

.testimonial-card {
  position: relative;
  margin-top: 30px;
  padding: 44px 40px 34px;
  background: var(--white);
  border: 5px solid var(--black);
  box-shadow: 11px 11px 0 var(--red);
  transform: rotate(-1deg);
}

.testimonial-mark {
  position: absolute;
  top: -38px;
  left: 20px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.3;
}

.testimonial-author {
  margin-top: 22px;
  padding-top: 16px;
  color: var(--gray);
  border-top: 3px solid var(--black);
}

.testimonial-explanation {
  margin-top: 32px;
  color: var(--gray);
  font-size: 1.04rem;
}

.about-section {
  background: var(--yellow);
  border-bottom: 6px solid var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 65px;
  align-items: center;
}

.about-photo {
  position: relative;
  max-width: 420px;
}

.about-photo img {
  width: 100%;
  display: block;
  border: 6px solid var(--black);
  box-shadow: 12px 12px 0 var(--red);
  transform: rotate(-1.5deg);
}

.experience-sticker {
  position: absolute;
  right: -30px;
  bottom: -28px;
  display: grid;
  padding: 15px 18px;
  color: var(--white);
  background: var(--red);
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  text-align: center;
  transform: rotate(5deg);
}

.experience-sticker span {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.experience-sticker strong {
  font-size: 0.75rem;
}

.about-copy p {
  max-width: 700px;
  font-size: 1.05rem;
}

.expert-section {
  color: var(--white);
  background: var(--dark);
  border-bottom: 6px solid var(--black);
}

.expert-card {
  padding: 38px;
  color: var(--black);
  background: var(--cream);
  border: 5px solid var(--black);
  box-shadow: 10px 10px 0 var(--yellow);
  text-align: center;
}

.expert-quote {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.expert-author {
  display: inline-block;
  margin-top: 22px;
  padding: 8px 12px;
  background: var(--yellow);
  border: 3px solid var(--black);
}

.guarantee-section {
  background: var(--red);
  border-top: 6px solid var(--black);
  border-bottom: 6px solid var(--black);
}

.guarantee-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 35px;
  align-items: center;
  padding: 42px 48px;
  background: var(--yellow);
  border: 6px solid var(--black);
  box-shadow: 12px 12px 0 var(--black);
}

.guarantee-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 5px solid var(--black);
  font-size: 4rem;
  transform: rotate(-4deg);
}

.guarantee-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--black);
  border: 3px solid var(--black);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.guarantee-copy h2 {
  margin-bottom: 16px;
}

.guarantee-copy p {
  max-width: 820px;
  font-size: 1.05rem;
}

.guarantee-promise {
  display: inline-block;
  margin-top: 7px;
  padding: 9px 13px;
  color: var(--white);
  background: var(--red);
  border: 3px solid var(--black);
  font-weight: 900;
}

.final-guarantee {
  display: block;
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 900;
}

.micro-copy {
  display: inline-block;
  padding: 8px 11px;
  background: var(--yellow);
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--red);
}

@media (max-width: 1000px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    margin: 0 auto;
  }

  .guarantee-card {
    grid-template-columns: 110px 1fr;
  }
}

@media (max-width: 680px) {
  .testimonial-section,
  .about-section,
  .expert-section,
  .guarantee-section {
    padding: 58px 0;
  }

  .testimonial-card {
    padding: 40px 22px 28px;
  }

  .about-grid {
    gap: 58px;
  }

  .about-photo {
    width: calc(100% - 32px);
  }

  .experience-sticker {
    right: -20px;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px;
  }

  .guarantee-icon {
    width: 88px;
    height: 88px;
    font-size: 3rem;
  }

  .micro-copy {
    display: block;
    width: 100%;
    text-align: center;
  }
}
