:root {
  --color-white: #ffffff;
  --color-navy: #0c2742;
  --color-navy-soft: #143a62;
  --color-teal: #18a99b;
  --color-teal-soft: #5be4d4;
  --color-foam: #eaf3f6;
  --color-sand: #f8fcfd;
  --color-ink: #17324c;
  --color-muted: #59738c;
  --color-border: rgba(12, 39, 66, 0.1);
  --shadow-soft: 0 26px 70px rgba(12, 39, 66, 0.12);
  --shadow-card: 0 18px 44px rgba(12, 39, 66, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-ink);
  background: linear-gradient(180deg, #fbfeff 0%, #ffffff 24%, #f8fcfd 100%);
  overflow-x: hidden;
}

body.nav-scrolled .site-header {
  box-shadow: 0 16px 44px rgba(12, 39, 66, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(12, 39, 66, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header nav {
  height: var(--header-height);
  line-height: normal;
  background: transparent;
  box-shadow: none;
}

.site-header .nav-wrapper {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--color-navy);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-wrap img {
  width: 46px;
  height: 46px;
}

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

.nav-links li {
  list-style: none;
}

.nav-links a,
.sidenav a {
  color: var(--color-ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-links a {
  padding: 12px 18px;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(24, 169, 155, 0.12);
  color: var(--color-navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidenav-trigger {
  color: var(--color-navy);
}

.btn,
.btn-large,
.btn-flat {
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 800;
}

.btn {
  height: 48px;
  line-height: 48px;
  padding: 0 24px;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #0a2036, #169688);
}

.btn-secondary {
  background: rgba(12, 39, 66, 0.08);
  color: var(--color-navy);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(12, 39, 66, 0.12);
}

.btn-outline {
  border: 1px solid rgba(12, 39, 66, 0.12);
  color: var(--color-navy);
  background: var(--color-white);
}

.hero-shell {
  position: relative;
  overflow: hidden;
  padding: 42px 0 36px;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-shell::before {
  width: 380px;
  height: 380px;
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(91, 228, 212, 0.26) 0%, rgba(91, 228, 212, 0) 72%);
}

.hero-shell::after {
  width: 260px;
  height: 260px;
  bottom: 40px;
  left: -80px;
  background: radial-gradient(circle, rgba(12, 39, 66, 0.08) 0%, rgba(12, 39, 66, 0) 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 40px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(24, 169, 155, 0.12);
  color: var(--color-navy);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow .material-symbols-outlined {
  font-size: 18px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 18px 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--color-navy);
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-copy p,
.page-hero p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--color-muted);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.highlight-card {
  padding: 20px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 39, 66, 0.08);
  box-shadow: var(--shadow-card);
}

.highlight-card strong {
  display: block;
  font-size: 1rem;
  color: var(--color-navy);
}

.highlight-card span {
  display: block;
  margin-top: 6px;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero-orbit {
  position: absolute;
  width: 100%;
  max-width: 520px;
  inset: 0;
  margin: auto;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-orbit::before {
  width: 420px;
  height: 420px;
  top: 30px;
  right: 10px;
  background: linear-gradient(180deg, rgba(24, 169, 155, 0.18), rgba(24, 169, 155, 0));
}

.hero-orbit::after {
  width: 310px;
  height: 310px;
  bottom: 16px;
  left: -10px;
  background: linear-gradient(180deg, rgba(12, 39, 66, 0.1), rgba(12, 39, 66, 0));
}

.phone-wrap {
  position: relative;
  width: min(100%, 520px);
  z-index: 1;
}

.phone-badge,
.floating-card {
  position: absolute;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(12, 39, 66, 0.08);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.phone-badge {
  top: 118px;
  left: -24px;
  padding: 18px 18px 16px;
  max-width: 180px;
}

.phone-badge strong,
.floating-card strong {
  display: block;
  color: var(--color-navy);
  font-size: 1rem;
}

.phone-badge span,
.floating-card span {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.floating-card {
  right: -18px;
  bottom: 96px;
  padding: 18px 20px;
  max-width: 220px;
}

.wave-divider {
  position: relative;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 92px;
}

.wave-divider.wave-soft svg path {
  fill: var(--color-foam);
}

.wave-divider.wave-white svg path {
  fill: var(--color-white);
}

.section-block {
  position: relative;
  padding: 96px 0;
}

.section-soft {
  background: var(--color-foam);
}

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

.section-head {
  max-width: 740px;
  margin-bottom: 40px;
}

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

.section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--color-navy);
  max-width: 100%;
  overflow-wrap: break-word;
}

.section-head p {
  margin: 16px 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.info-card,
.requirement-card,
.district-card,
.app-panel,
.timeline-card,
.faq-panel,
.contact-card,
.legal-card,
.mini-cta,
.zone-panel,
.form-shell,
.feature-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.info-card,
.requirement-card,
.district-card,
.contact-card,
.legal-card,
.mini-cta,
.timeline-card,
.feature-panel {
  background: rgba(255, 255, 255, 0.94);
}

.info-card,
.requirement-card,
.timeline-card,
.feature-panel {
  padding: 28px;
}

.info-card {
  grid-column: span 4;
}

.info-card .material-symbols-outlined,
.requirement-card .material-symbols-outlined,
.contact-card .material-symbols-outlined,
.timeline-card .step-index,
.feature-panel .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(24, 169, 155, 0.12);
  color: var(--color-navy);
}

.info-card h3,
.requirement-card h3,
.timeline-card h3,
.contact-card h3,
.feature-panel h3,
.mini-cta h3,
.form-shell h3,
.zone-panel h3 {
  margin: 16px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  color: var(--color-navy);
}

.info-card p,
.requirement-card p,
.timeline-card p,
.contact-card p,
.legal-card p,
.mini-cta p,
.feature-panel p,
.zone-panel p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.72;
}

.zone-panel {
  padding: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 243, 246, 0.9));
}

.district-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.district-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.district-card .material-symbols-outlined {
  font-size: 18px;
  color: var(--color-teal);
}

.requirements-layout,
.contact-layout,
.app-layout,
.page-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.requirements-copy,
.contact-copy,
.app-copy,
.page-copy {
  grid-column: span 5;
}

.requirements-grid,
.contact-cards,
.app-visual,
.page-aside {
  grid-column: span 7;
}

.requirement-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.requirement-card + .requirement-card {
  margin-top: 18px;
}

.requirement-list,
.check-list,
.detail-list {
  margin: 22px 0 0;
  padding: 0;
}

.requirement-list li,
.check-list li,
.detail-list li {
  list-style: none;
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--color-muted);
  line-height: 1.68;
}

.requirement-list li::before,
.check-list li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-soft));
  box-shadow: 0 0 0 6px rgba(24, 169, 155, 0.12);
}

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

.timeline-card .step-index {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(12, 39, 66, 0.12), rgba(24, 169, 155, 0.12));
}

.app-panel {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(12, 39, 66, 1) 0%, rgba(20, 58, 98, 1) 48%, rgba(24, 169, 155, 0.95) 100%);
  color: var(--color-white);
  padding: 42px;
}

.app-layout {
  align-items: center;
}

.app-copy h2,
.page-hero h1,
.app-panel h3 {
  color: var(--color-white);
}

.app-panel .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
}

.app-panel p,
.app-panel li {
  color: rgba(255, 255, 255, 0.84);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease;
}

.badge-link:hover,
.badge-link:focus {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.badge-link img {
  height: 58px;
  width: auto;
}

.badge-link.store-ios img {
  height: 48px;
}

.app-note {
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.collapsible {
  border: 0;
  box-shadow: none;
  margin: 0;
}

.collapsible li {
  margin-bottom: 16px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(12, 39, 66, 0.08);
  box-shadow: var(--shadow-card);
}

.collapsible-header {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 0 26px;
  border-bottom: 0;
  background: transparent;
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--color-navy);
}

.collapsible-header .material-symbols-outlined {
  color: var(--color-teal);
  font-size: 1.35rem;
}

.collapsible-body {
  padding: 0 26px 26px 68px;
  border-bottom: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.form-shell {
  background: rgba(255, 255, 255, 0.96);
  padding: 34px;
}

.form-shell p {
  margin: 0 0 20px;
  color: var(--color-muted);
  line-height: 1.68;
}

.form-grid {
  gap: 0 20px;
}

.field-block {
  grid-column: span 6;
  margin-bottom: 12px;
}

.field-block.full {
  grid-column: span 12;
}

.input-field {
  margin-top: 0;
  margin-bottom: 0;
}

.input-field input[type="text"],
.input-field input[type="tel"],
.input-field input[type="number"],
.input-field textarea {
  margin: 0;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(12, 39, 66, 0.12);
  border-radius: 16px;
  background: #fbfdfe;
  box-shadow: none;
  color: var(--color-ink);
}

.input-field textarea.materialize-textarea {
  min-height: 128px;
  padding: 16px 18px;
}

.input-field label {
  left: 18px;
  color: var(--color-muted);
}

.input-field label:not(.label-icon).active {
  transform: translateY(-14px) scale(0.8);
}

.input-field input:focus,
.input-field textarea:focus {
  border-bottom: 1px solid rgba(12, 39, 66, 0.12) !important;
  box-shadow: 0 0 0 4px rgba(24, 169, 155, 0.12) !important;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 20px;
}

.checkbox-wrap label {
  color: var(--color-muted);
  line-height: 1.6;
}

[type="checkbox"] + span:not(.lever) {
  padding-left: 32px;
}

[type="checkbox"].filled-in:checked + span:not(.lever)::after {
  border-color: var(--color-teal);
  background-color: var(--color-teal);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.form-status {
  display: none;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 700;
}

.form-status.is-success {
  display: block;
  background: rgba(91, 228, 212, 0.18);
  color: #0c6a60;
}

.form-status.is-error {
  display: block;
  background: rgba(235, 106, 106, 0.12);
  color: #9a2c2c;
}

.contact-card,
.legal-card,
.mini-cta {
  padding: 28px;
}

.contact-card + .contact-card,
.legal-card + .legal-card,
.mini-cta + .mini-cta {
  margin-top: 18px;
}

.contact-card a,
.legal-card a,
.mini-cta a {
  color: var(--color-navy);
  font-weight: 800;
}

.contact-value {
  display: block;
  margin-top: 12px;
  font-size: 1.12rem;
  color: var(--color-navy);
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;
  background: linear-gradient(135deg, #0c2742, #143a62 58%, #18a99b 100%);
  color: var(--color-white);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
}

.page-grid {
  align-items: start;
}

.feature-panel {
  height: 100%;
}

.timeline-shell {
  position: relative;
  padding-left: 36px;
}

.timeline-shell::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 10px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(24, 169, 155, 0.18), rgba(12, 39, 66, 0.18));
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 24px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
  box-shadow: 0 0 0 8px rgba(24, 169, 155, 0.12);
}

.note-box {
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 243, 246, 0.96));
  border: 1px solid rgba(12, 39, 66, 0.08);
  box-shadow: var(--shadow-card);
}

.note-box h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  color: var(--color-navy);
}

.note-box + .note-box {
  margin-top: 18px;
}

.site-footer {
  padding: 28px 0 34px;
  background: #071a2d;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--color-white);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.site-footer p,
.site-footer li {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.site-footer ul {
  margin: 0;
  padding: 0;
}

.site-footer li {
  list-style: none;
  margin-bottom: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-section-offset {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.muted-caption {
  display: block;
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.64;
}

@media screen and (max-width: 1100px) {
  .hero-grid,
  .requirements-layout,
  .contact-layout,
  .app-layout,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-visual,
  .requirements-grid,
  .contact-cards,
  .app-visual,
  .page-aside {
    order: 2;
  }

  .hero-copy,
  .requirements-copy,
  .contact-copy,
  .app-copy,
  .page-copy {
    order: 1;
  }

  .card-grid .info-card {
    grid-column: span 6;
  }

  .step-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media screen and (max-width: 992px) {
  :root {
    --header-height: 76px;
  }

  .nav-links,
  .header-actions .btn {
    display: none;
  }

  .hero-shell {
    padding: 24px 0 24px;
  }

  .hero-highlights,
  .card-grid,
  .step-preview {
    grid-template-columns: 1fr;
  }

  .card-grid .info-card {
    grid-column: span 12;
  }

  .phone-badge {
    left: 0;
    top: 80px;
  }

  .floating-card {
    right: 0;
    bottom: 42px;
  }

  .section-block {
    padding: 78px 0;
  }
}

@media screen and (max-width: 720px) {
  .container {
    width: min(1180px, calc(100% - 24px));
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .hero-copy h1,
  .page-hero h1,
  .section-head h2 {
    max-width: 11ch;
  }

  .page-hero h1,
  .section-head h2 {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
    line-height: 1.08;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .highlight-card,
  .info-card,
  .requirement-card,
  .timeline-card,
  .feature-panel,
  .contact-card,
  .legal-card,
  .mini-cta,
  .note-box,
  .form-shell,
  .zone-panel,
  .app-panel {
    padding: 22px;
  }

  .requirements-layout,
  .contact-layout,
  .app-layout,
  .page-grid,
  .form-grid {
    gap: 18px;
  }

  .field-block,
  .field-block.full {
    grid-column: span 12;
  }

  .badge-row {
    gap: 12px;
  }

  .badge-link img {
    height: 50px;
  }

  .badge-link.store-ios img {
    height: 42px;
  }

  .phone-badge,
  .floating-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
