:root {
  --ink: #101820;
  --navy: #0a2a43;
  --blue: #126491;
  --blue-deep: #0d4266;
  --lime: #b9ca18;
  --gold: #d39a2f;
  --paper: #ffffff;
  --porcelain: #f4f7f9;
  --mist: #e8eef2;
  --line: rgba(16, 24, 32, 0.14);
  --line-strong: rgba(16, 24, 32, 0.24);
  --muted: #5f6d78;
  --text: #26323d;
  --shadow: 0 28px 70px rgba(10, 42, 67, 0.16);
  --radius: 6px;
  --max: 1220px;
  --header: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}

img,
object,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.05rem;
}

li+li {
  margin-top: 0.35rem;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
  min-height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 170px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 0 18px !important;
  background: var(--navy);
  color: #fff !important;
  border-radius: 4px;
}

.site-nav .header-cta::after {
  display: none;
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - var(--header)));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 20, 31, 0.88), rgba(7, 20, 31, 0.66) 47%, rgba(7, 20, 31, 0.22)),
    var(--hero-image) center/cover no-repeat;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 31, 0.08), rgba(7, 20, 31, 0.68)),
    linear-gradient(90deg, rgba(185, 202, 24, 0.14) 0 1px, transparent 1px 100%);
  background-size: auto, 84px 100%;
  pointer-events: none;
}

.hero--compact {
  min-height: 560px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 64px;
}

.hero--compact .hero-content {
  padding-top: 104px;
}

.hero-copy {
  max-width: 885px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero--compact h1 {
  max-width: 800px;
  font-size: clamp(2.3rem, 4.6vw, 4.75rem);
}

.hero-lead {
  max-width: 745px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.55vw, 1.24rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 760;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-meta span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--lime);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 870;
  line-height: 1;
  cursor: pointer;
}

.button::after {
  content: "->";
  font-size: 0.95em;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
}

.button.secondary.dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.button.secondary.dark:hover,
.button.secondary:hover {
  border-color: var(--lime);
}

.hero-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-ledger div {
  padding: 24px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-ledger div:last-child {
  border-right: 0;
}

.hero-ledger strong {
  display: block;
  color: #fff;
  font-size: clamp(1.85rem, 3.3vw, 2.75rem);
  line-height: 1;
}

.hero-ledger span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 760;
}

.section {
  padding: 116px 0;
}

.section.tight {
  padding: 78px 0;
}

.section.alt {
  background: var(--porcelain);
}

.section.dark {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 24, 35, 0.96), rgba(10, 42, 67, 0.86)),
    var(--section-image, none) center/cover no-repeat;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.54fr);
  gap: 58px;
  align-items: end;
  margin-bottom: 54px;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.section-head.center {
  display: block;
  max-width: 790px;
  text-align: left;
  margin: 0 auto 54px;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.7vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-title.small {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.section-head p,
.section-head.center p {
  color: var(--muted);
  font-size: 1.04rem;
}

.dark .section-title,
.dark .section-head p,
.dark .lead,
.dark .muted {
  color: #fff;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--blue-deep);
  font-weight: 870;
}

.text-link::after {
  content: "->";
}

.dark .text-link {
  color: var(--lime);
}

.authority-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 64px;
  align-items: start;
}

.authority-copy {
  max-width: 720px;
}

.authority-copy h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.04;
}

.authority-list {
  margin-top: 44px;
  border-top: 1px solid var(--line-strong);
}

.authority-item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.authority-item strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.authority-item p {
  margin: 0;
  color: var(--muted);
}

.document-preview,
.pdf-viewer {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.document-preview object {
  display: block;
  width: 100%;
  flex: 1;
  border: 0;
}

.document-preview a,
.pdf-viewer a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: var(--ink);
  color: #fff;
  font-weight: 820;
}

.division-stack {
  border-top: 1px solid var(--line-strong);
}

.division-row {
  display: grid;
  grid-template-columns: 100px minmax(220px, 0.46fr) minmax(0, 1fr) auto;
  gap: 34px;
  align-items: start;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.division-number {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
}

.division-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.division-row p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
}

.scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.scope-list li {
  margin: 0;
  padding: 7px 10px;
  background: var(--porcelain);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 760;
}

.division-row .text-link {
  margin: 0;
  white-space: nowrap;
}

.capability-matrix {
  border-top: 1px solid var(--line-strong);
}

.capability-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr) minmax(220px, 0.44fr);
  gap: 38px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.capability-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
}

.capability-row p {
  margin: 0;
  color: var(--muted);
}

.capability-row ul {
  color: var(--text);
  font-size: 0.96rem;
}

.workflow-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.workflow-step {
  position: relative;
  min-height: 230px;
  padding: 30px 24px 30px 0;
  border-right: 1px solid var(--line);
}

.workflow-step:last-child {
  border-right: 0;
}

.workflow-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  background: var(--navy);
  color: #fff;
  font-size: 0.88rem;
}

.workflow-step h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.15rem;
}

.workflow-step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.project-timeline {
  position: relative;
  border-top: 1px solid var(--line-strong);
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 48px;
  padding: 34px 0 34px 42px;
  border-bottom: 1px solid var(--line);
}

.timeline-entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 42px;
  width: 13px;
  height: 13px;
  background: var(--lime);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line-strong);
}

.alt .timeline-entry::before {
  border-color: var(--porcelain);
}

.timeline-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.timeline-meta strong {
  color: var(--blue-deep);
  font-size: 1rem;
}

.timeline-entry h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.timeline-entry p {
  max-width: 780px;
  color: var(--muted);
}

.company-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 62px;
  align-items: center;
}

.company-panel h2 {
  max-width: 750px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1.05;
}

.company-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.company-facts div {
  padding: 22px;
  background: rgba(7, 20, 31, 0.52);
}

.company-facts strong {
  display: block;
  color: var(--lime);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.company-facts span {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-weight: 780;
}

.field-gallery {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 12px;
}

.field-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.field-gallery img:first-child {
  grid-row: span 2;
}

.cta-band {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 58px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 20, 31, 0.91), rgba(7, 20, 31, 0.58) 58%, rgba(7, 20, 31, 0.16)),
    var(--section-image, none) center/cover no-repeat;
  border-radius: var(--radius);
}

.cta-band h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.06;
}

.cta-band p {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 68px;
  align-items: start;
}

.proof-table {
  border-top: 1px solid var(--line-strong);
}

.proof-row {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.proof-row strong {
  color: var(--ink);
}

.proof-row p {
  margin: 0;
  color: var(--muted);
}

.process-timeline {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.process-timeline.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.process-item {
  counter-increment: process;
  min-height: 215px;
  padding: 30px 22px 30px 0;
  border-right: 1px solid var(--line);
}

.process-item:last-child {
  border-right: 0;
}

.process-item::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 34px;
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 900;
}

.process-item h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.process-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

.pdf-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 54px;
  align-items: start;
}

.pdf-layout.reverse {
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
}

.pdf-viewer object,
.pdf-viewer iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
}

.document-list {
  border-top: 1px solid var(--line-strong);
}

.document-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.document-row h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.08rem;
}

.document-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.document-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-weight: 820;
}

.document-row a.primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.contact-directory {
  border-top: 1px solid var(--line-strong);
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: 36px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
}

.contact-row .role {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
}

.contact-row a {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-deep);
  font-weight: 820;
}

.contact-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.contact-ledger div {
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.contact-ledger div:last-child {
  border-right: 0;
}

.contact-ledger strong {
  display: block;
  margin-bottom: 30px;
  color: var(--blue-deep);
  font-size: 0.92rem;
}

.contact-ledger p,
.contact-ledger a {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 760;
  line-height: 1.35;
}

.map-frame {
  overflow: hidden;
  min-height: 450px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 48px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 18px;
}

.footer-inner h2,
.footer-inner h3 {
  margin: 0 0 14px;
  color: #fff;
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a:hover {
  color: #fff;
}

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

.footer-bottom div {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

@media (max-width: 1060px) {

  .authority-layout,
  .company-panel,
  .pdf-layout,
  .pdf-layout.reverse,
  .section-head,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .division-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .division-row>div {
    grid-column: 2;
  }

  .division-row .text-link {
    grid-column: 2;
  }

  .capability-row,
  .contact-row,
  .authority-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .workflow-map,
  .process-timeline,
  .process-timeline.six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 72px;
  }

  .container,
  .header-inner,
  .hero-content,
  .footer-inner,
  .footer-bottom div {
    width: min(100% - 30px, var(--max));
  }

  .brand img {
    width: 142px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(100% + 8px);
    display: none;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a,
  .header-cta {
    justify-content: flex-start;
    width: 100%;
  }

  .hero {
    min-height: 650px;
    background:
      linear-gradient(90deg, rgba(7, 20, 31, 0.92), rgba(7, 20, 31, 0.72)),
      var(--hero-image) center/cover no-repeat;
  }

  .hero-content {
    padding: 86px 0 42px;
  }

  .hero-ledger,
  .contact-ledger,
  .company-facts {
    grid-template-columns: 1fr;
  }

  .hero-ledger div,
  .contact-ledger div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .contact-ledger div {
    border-bottom-color: var(--line);
  }

  .section {
    padding: 78px 0;
  }

  .section.tight {
    padding: 56px 0;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 36px;
  }

  .division-row,
  .timeline-entry,
  .document-row,
  .proof-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .division-row>div,
  .division-row .text-link {
    grid-column: auto;
  }

  .workflow-map,
  .process-timeline,
  .process-timeline.six {
    grid-template-columns: 1fr;
  }

  .workflow-step,
  .process-item {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:last-child,
  .process-item:last-child {
    border-bottom: 0;
  }

  .field-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 230px 230px 230px;
  }

  .field-gallery img:first-child {
    grid-row: auto;
  }

  .pdf-viewer object,
  .pdf-viewer iframe {
    min-height: 420px;
    height: 420px;
  }

  .document-row a {
    width: 100%;
  }

  .cta-band {
    min-height: 460px;
    padding: 34px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}


.central-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}