:root {
  --navy: #071b3a;
  --navy-soft: #0c2b55;
  --teal: #007f86;
  --teal-dark: #00676d;
  --white: #ffffff;
  --cloud: #f4f7f8;
  --mist: #eef2f4;
  --slate: #526174;
  --line: #dce3e7;
  --warning: #b65d1b;
  --error: #a63d3d;
  --success: #23724b;
  --radius: 6px;
  --shadow: 0 24px 60px rgba(7, 27, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(0, 127, 134, 0.28);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--navy);
  border-radius: 2px;
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: 0.13em;
}

.brand-name small {
  margin-top: 4px;
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
}

.main-nav a,
.login-link,
.footer-nav a,
.footer-bottom a {
  text-decoration: none;
}

.main-nav a,
.login-link {
  position: relative;
  padding: 8px 0;
  color: #1d2d45;
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a::after,
.login-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after,
.login-link:hover::after {
  width: 100%;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 25px;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding: 0 19px;
  font-size: 0.91rem;
}

.button-outline {
  color: var(--teal-dark);
  background: transparent;
  border-color: var(--teal);
}

.button-outline:hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--navy);
}

.hero {
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  min-height: 680px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 4vw, 64px) 80px 0;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  font-size: clamp(3rem, 4.3vw, 4.4rem);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-copy > p {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--slate);
  font-size: 1.2rem;
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-image {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.trust-statement {
  min-height: 105px;
  display: flex;
  align-items: center;
}

.trust-statement p {
  max-width: 580px;
  margin: 0;
  font-size: 1.03rem;
  font-weight: 650;
  line-height: 1.6;
}

.solutions-overview {
  padding: 118px 0 126px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.section-intro h2,
.product-copy h2,
.sector-layout h2,
.contact-layout h2,
.page-hero h1,
.content-heading,
.auth-panel h1,
.error-page h1 {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-intro h2 {
  max-width: 760px;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
}

.section-intro p {
  margin: 0;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.75;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.solution-item {
  min-width: 0;
  padding: 35px 42px 4px 0;
}

.solution-item + .solution-item {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.solution-number {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.solution-item h3 {
  margin: 36px 0 0;
  font-size: 1.52rem;
}

.solution-item p {
  min-height: 84px;
  margin: 18px 0 28px;
  color: var(--slate);
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.product-band {
  padding: 110px 0;
  color: var(--white);
  background: var(--navy);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(600px, 1.35fr);
  align-items: center;
  gap: 80px;
}

.product-copy h2 {
  font-size: clamp(2.5rem, 3.6vw, 4rem);
}

.product-copy p {
  margin: 28px 0 30px;
  color: #b9c6d7;
  font-size: 1.04rem;
  line-height: 1.78;
}

.text-link-light {
  color: #6bd4d7;
}

.product-window {
  display: grid;
  grid-template-columns: 172px 1fr;
  min-width: 0;
  min-height: 450px;
  overflow: hidden;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 10px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.28);
}

.window-sidebar {
  padding: 28px 18px;
  color: var(--white);
  background: #09264c;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 750;
}

.window-brand span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid #5cc5cb;
}

.window-sidebar ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.window-sidebar li {
  margin: 5px 0;
  padding: 11px 12px;
  color: #b9c8da;
  border-radius: 4px;
  font-size: 0.82rem;
}

.window-sidebar li.selected {
  color: var(--white);
  background: var(--teal);
}

.window-content {
  min-width: 0;
  padding: 28px;
}

.window-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.window-heading strong,
.window-heading span {
  display: block;
}

.window-heading strong {
  font-size: 1.35rem;
}

.window-heading span {
  margin-top: 4px;
  color: var(--slate);
  font-size: 0.78rem;
}

.window-heading button {
  padding: 9px 13px;
  color: var(--white);
  background: var(--teal);
  border: 0;
  border-radius: 4px;
  font-size: 0.77rem;
}

.table-tabs {
  display: flex;
  gap: 25px;
  margin-top: 30px;
  color: var(--slate);
  border-bottom: 1px solid var(--line);
  font-size: 0.79rem;
}

.table-tabs span {
  padding: 0 0 12px;
}

.table-tabs .active {
  color: var(--teal-dark);
  border-bottom: 2px solid var(--teal);
  font-weight: 750;
}

.work-table {
  margin-top: 9px;
}

.work-row {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr 0.8fr 0.85fr;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  color: #435268;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.work-row strong {
  color: var(--navy);
}

.work-head {
  min-height: 42px;
  color: #7c8797;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.priority {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 3px;
  font-style: normal;
  font-weight: 750;
}

.priority.high { color: #9b3030; background: #fae3e3; }
.priority.medium { color: #91540d; background: #fbedd9; }
.priority.low { color: #23633d; background: #def1e5; }

.sector-strip {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.sector-layout,
.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.sector-layout > div {
  max-width: 760px;
}

.sector-layout h2,
.contact-layout h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
}

.sector-layout p {
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-band {
  padding: 66px 0;
  background: var(--cloud);
  border-bottom: 1px solid var(--line);
}

.contact-layout h2 {
  max-width: 760px;
}

.site-footer {
  padding: 64px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-identity p {
  margin: 20px 0 0;
  color: var(--slate);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 30px;
}

.footer-nav a,
.footer-bottom a {
  color: #334359;
  font-size: 0.91rem;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  color: #697689;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 26px;
}

/* Shared inner pages */
.page-hero {
  padding: 105px 0 88px;
  background: var(--cloud);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.page-hero p {
  margin: 0;
  color: var(--slate);
  font-size: 1.12rem;
  line-height: 1.75;
}

.content-section {
  padding: 96px 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--line);
}

.content-heading {
  max-width: 760px;
  font-size: clamp(2.2rem, 3.4vw, 3.7rem);
}

.content-lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.8;
}

.detail-list,
.industry-list,
.resource-list {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.detail-row,
.industry-row,
.resource-row {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 70px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row h2,
.detail-row h3,
.industry-row h2,
.resource-row h2 {
  margin: 0;
  font-size: 1.45rem;
}

.detail-row p,
.industry-row p,
.resource-row p {
  margin: 0;
  color: var(--slate);
  line-height: 1.75;
}

.detail-row ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--slate);
  line-height: 1.9;
}

.resource-row > div:last-child {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
}

.resource-row .text-link {
  white-space: nowrap;
}

/* Forms and access pages */
.form-page {
  min-height: calc(100vh - 89px);
  display: grid;
  grid-template-columns: minmax(330px, 0.42fr) minmax(520px, 0.58fr);
}

.form-context {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 650px;
  padding: 56px clamp(38px, 5vw, 80px);
  color: var(--white);
  background: var(--navy);
}

.form-context .brand-symbol {
  color: var(--navy);
  background: var(--white);
}

.form-context .brand-name {
  color: var(--white);
}

.form-context-copy {
  max-width: 390px;
}

.form-context-copy h2 {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  font-size: clamp(2.25rem, 3vw, 3.4rem);
  font-weight: 650;
  line-height: 1.12;
}

.form-context-copy p {
  margin: 20px 0 0;
  color: #b9c6d7;
  line-height: 1.75;
}

.form-context small {
  color: #91a4ba;
}

.auth-shell {
  display: grid;
  place-items: center;
  padding: 60px;
}

.auth-panel {
  width: min(100%, 480px);
}

.auth-panel h1 {
  font-size: clamp(2.7rem, 4vw, 4rem);
}

.auth-panel > p {
  margin: 18px 0 40px;
  color: var(--slate);
  line-height: 1.7;
}

.form-field {
  margin-top: 22px;
}

.form-field label {
  display: block;
  margin-bottom: 9px;
  font-size: 0.91rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #aeb9c4;
  border-radius: 4px;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  outline: 2px solid rgba(0, 127, 134, 0.13);
}

.form-submit {
  width: 100%;
  margin-top: 28px;
}

.form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  font-size: 0.91rem;
}

.form-meta a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.form-message {
  display: none;
  margin: 22px 0 0;
  padding: 13px 15px;
  border-left: 3px solid var(--teal);
  background: var(--cloud);
  line-height: 1.6;
}

.form-message.visible {
  display: block;
}

.form-message.error {
  color: var(--error);
  border-color: var(--error);
  background: #fff4f4;
}

.form-message.success {
  color: var(--success);
  border-color: var(--success);
  background: #f0faf4;
}

.back-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 36px;
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.warning-line {
  color: var(--warning) !important;
  font-weight: 700;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1fr);
  gap: 100px;
  padding: 92px 0 110px;
}

.contact-copy h1 {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  font-size: clamp(3rem, 4.7vw, 5.1rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.contact-copy > p {
  margin: 25px 0 0;
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.75;
}

.contact-details {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-details p {
  margin: 10px 0;
  color: var(--slate);
}

.contact-form {
  padding: 42px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form h2 {
  margin: 0 0 28px;
  font-size: 1.6rem;
}

.legal-content {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.legal-content h1 {
  margin: 0 0 35px;
  font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 650;
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: var(--slate);
  line-height: 1.8;
}

.code-block {
  overflow-x: auto;
  margin-top: 32px;
  padding: 24px;
  color: #d7e3f1;
  background: var(--navy);
  border-radius: 6px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.8;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
  background: var(--cloud);
}

.error-card {
  max-width: 620px;
  text-align: center;
}

.error-page h1 {
  font-size: clamp(5rem, 12vw, 9rem);
}

.error-page p {
  margin: 15px 0 30px;
  color: var(--slate);
  font-size: 1.1rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-image,
  .trust-statement,
  .solution-item {
    animation: reveal 600ms ease both;
  }

  .hero-image { animation-delay: 90ms; }
  .trust-statement { animation-delay: 160ms; }
  .solution-item:nth-child(2) { animation-delay: 80ms; }
  .solution-item:nth-child(3) { animation-delay: 160ms; }

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

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 220px 1fr auto;
    gap: 20px;
  }

  .main-nav {
    gap: 20px;
  }

  .header-actions {
    gap: 14px;
  }

  .login-link {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

  .hero-copy {
    padding-right: 42px;
  }

  .product-layout,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .product-layout {
    gap: 55px;
  }

  .product-copy {
    max-width: 690px;
  }

  .contact-page {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 40px, 1240px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

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

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    display: flex;
  }

  .site-header.nav-open .main-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 20px 0 8px;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .header-actions {
    grid-column: 1 / -1;
    align-items: flex-start;
    padding: 0 0 22px;
  }

  .site-header.nav-open .login-link {
    display: inline-block;
  }

  .hero-layout,
  .section-intro,
  .page-hero-inner,
  .detail-row,
  .industry-row,
  .resource-row,
  .form-page {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: 0;
  }

  .hero-copy {
    padding: 72px 0 62px;
  }

  .hero h1 {
    max-width: 700px;
  }

  .hero-image {
    height: 520px;
  }

  .section-intro,
  .page-hero-inner {
    gap: 26px;
  }

  .solution-list {
    grid-template-columns: 1fr;
  }

  .solution-item,
  .solution-item + .solution-item {
    padding: 34px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution-item p {
    min-height: 0;
  }

  .product-window {
    grid-template-columns: 135px minmax(520px, 1fr);
    overflow-x: auto;
  }

  .sector-layout,
  .contact-layout,
  .footer-main {
    align-items: flex-start;
  }

  .sector-layout,
  .contact-layout {
    flex-direction: column;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }

  .detail-row,
  .industry-row,
  .resource-row {
    gap: 20px;
  }

  .form-context {
    min-height: 350px;
  }

  .auth-shell {
    padding: 60px 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
  }

  .hero-copy {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-image {
    height: 400px;
  }

  .hero-image img {
    object-position: 51% center;
  }

  .trust-statement {
    min-height: 94px;
  }

  .solutions-overview,
  .content-section {
    padding: 78px 0;
  }

  .section-intro {
    margin-bottom: 45px;
  }

  .product-band {
    padding: 78px 0;
  }

  .product-window {
    grid-template-columns: 112px minmax(500px, 1fr);
    min-height: 400px;
  }

  .window-content {
    padding: 22px;
  }

  .sector-strip {
    padding: 72px 0;
  }

  .contact-band {
    padding: 52px 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }

  .page-hero {
    padding: 72px 0 65px;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .resource-row > div:last-child {
    flex-direction: column;
    gap: 20px;
  }

  .form-context {
    min-height: 300px;
    padding: 40px 24px;
  }

  .form-context-copy {
    margin: 50px 0;
  }

  .auth-shell {
    padding: 48px 20px;
  }

  .contact-page {
    padding: 68px 0 82px;
  }

  .contact-form {
    padding: 28px 20px;
  }
}
