:root {
  --blue: #064dfa;
  --blue-2: #0099ff;
  --navy: #0b0f18;
  --navy-soft: #101827;
  --ink: #1b243a;
  --muted: #5d6c87;
  --line: rgba(160, 188, 255, 0.33);
  --paper: #eef1fa;
  --white: #ffffff;
  --glass: rgba(11, 15, 24, 0.62);
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Barlow", "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(8px);
}

.brand-logo {
  display: grid;
  align-items: center;
  width: 230px;
  padding: 12px 22px;
  border-right: 1px solid var(--line);
  background: rgba(160, 188, 255, 0.05);
}

.brand-logo img {
  width: 176px;
  height: 42px;
  object-fit: contain;
}

.site-menu {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-width: 0;
}

.site-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-menu a:hover,
.site-menu a.active {
  color: var(--white);
  background: rgba(160, 188, 255, 0.11);
}

.site-menu .tracking-button {
  min-width: 138px;
  background: var(--blue);
  color: var(--white);
}

.site-menu .tracking-button:hover {
  background: #0035bd;
}

.menu-toggle {
  display: none;
}

.hero-home,
.internal-hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.internal-hero {
  min-height: 58svh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 13, 28, 0.68), rgba(6, 13, 28, 0.24) 52%, rgba(6, 13, 28, 0.46)),
    linear-gradient(180deg, rgba(6, 13, 28, 0.04), rgba(6, 13, 28, 0.58));
}

.hero-pattern {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 76px;
  height: 142px;
  opacity: 0.7;
  background: var(--hero-pattern-image, url("https://l3-api-gateway.logihub.com/logacloud/latinocargo/latinocargo/media/asset.pattern/hero-mark.svg")) center / 1259px 142px repeat-x;
}

.hero-content,
.internal-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-content {
  min-height: 92svh;
  display: grid;
  align-content: center;
  gap: 34px;
  padding-top: var(--header-h);
}

.hero-actions-top,
.hero-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions-top a,
.hero-quick a,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(160, 188, 255, 0.08);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-actions-top a:last-child,
.primary-button {
  border-color: transparent;
  background: var(--blue);
}

.hero-content h1,
.internal-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: 5rem;
  line-height: 0.96;
  font-weight: 700;
  text-transform: none;
}

.internal-hero-copy {
  min-height: 58svh;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: calc(var(--header-h) + 64px) 0 72px;
}

.internal-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.35rem;
}

.section-kicker {
  display: inline-flex;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-band,
.contact-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr) auto;
  gap: 34px;
  align-items: center;
  padding: 84px max(24px, calc((100vw - 1120px) / 2));
  background: var(--white);
}

.intro-band h2,
.contact-band h2,
.section-heading h2,
.content-split h2,
.policy-section h2,
.value-grid h2,
.office-panel h2,
.rate-group h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 2.8rem;
  line-height: 1.02;
}

.intro-band p,
.contact-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(0 42%, 76% 42%, 76% 0, 100% 50%, 76% 100%, 76% 58%, 0 58%);
}

.section-dark {
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: var(--white);
}

.section-light,
.why-section,
.news-grid,
.rate-section,
.form-section,
.detail-layout,
.content-split,
.policy-section,
.value-grid {
  padding: 92px max(24px, calc((100vw - 1120px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 40px;
}

.section-heading h2 {
  max-width: 780px;
  margin: 0;
  color: inherit;
}

.section-heading.compact {
  display: block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(160, 188, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  background: #111827;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 30, 0.08), rgba(8, 14, 30, 0.82));
}

.service-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 12px;
  padding: 28px;
}

.service-card h3,
.news-card h2,
.why-card h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.08;
}

.service-card p,
.why-card p,
.news-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-card em {
  color: var(--blue-2);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.why-section {
  background: var(--paper);
}

.why-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.why-card,
.value-grid article,
.news-card,
.office-panel,
.site-form,
.policy-section,
.rate-group {
  border: 1px solid rgba(25, 52, 114, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.why-card {
  min-height: 230px;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 26px;
}

.why-card p,
.news-card p,
.value-grid p,
.detail-copy p,
.content-split p,
.policy-copy p,
.office-panel p {
  color: var(--muted);
}

.contact-band {
  color: var(--white);
  background: var(--blue);
}

.contact-band .section-kicker,
.contact-band h2,
.contact-stack a,
.contact-stack p {
  color: var(--white);
}

.contact-stack {
  display: grid;
  gap: 8px;
}

.contact-stack a {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 34px;
  padding: 56px max(24px, calc((100vw - 1120px) / 2)) 28px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-brand img {
  width: 210px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p,
.footer-contact p {
  margin: 0;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact strong,
.footer-contact span {
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(160, 188, 255, 0.2);
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.content-split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  background: var(--white);
}

.rich-copy p {
  margin: 0 0 24px;
  font-size: 1.18rem;
}

.rich-copy ul,
.detail-copy ul,
.policy-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.value-grid {
  padding-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-grid article {
  padding: 30px;
}

.value-grid p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.policy-section {
  margin: 0 max(24px, calc((100vw - 1120px) / 2)) 92px;
  padding: 42px;
}

.policy-section h2 {
  margin-bottom: 26px;
}

.policy-copy {
  display: grid;
  gap: 14px;
}

.policy-copy p {
  margin: 0;
}

.section-light {
  background: var(--paper);
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(25, 52, 114, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.service-row:nth-child(even) .service-row-image {
  order: 2;
}

.service-row-image img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.service-row-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 46px;
}

.service-row-copy h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.02;
}

.service-row-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 38px;
  background: var(--white);
}

.detail-copy {
  max-width: 780px;
}

.detail-copy p {
  margin: 0 0 20px;
  font-size: 1.13rem;
}

.detail-copy h2 {
  margin: 36px 0 18px;
  font-size: 2.2rem;
  line-height: 1.1;
}

.detail-aside {
  display: grid;
  align-content: start;
  gap: 12px;
}

.detail-aside h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.detail-aside a {
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(25, 52, 114, 0.12);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  background: var(--paper);
}

.detail-aside img {
  width: 100%;
  height: 118px;
  border-radius: 6px;
  object-fit: cover;
}

.detail-aside span {
  font-weight: 800;
}

.detail-aside small {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
}

.site-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
}

.site-form label {
  display: grid;
  gap: 8px;
}

.site-form label.wide {
  grid-column: 1 / -1;
}

.site-form span {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-form input,
.site-form textarea {
  width: 100%;
  border: 1px solid rgba(25, 52, 114, 0.16);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8faff;
}

.site-form textarea {
  min-height: 160px;
  resize: vertical;
}

.site-form .primary-button {
  grid-column: 1 / -1;
  width: max-content;
  border: 0;
  cursor: pointer;
}

.office-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 30px;
}

.office-panel a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.news-card h2 {
  color: var(--ink);
  font-size: 1.8rem;
}

.article-copy {
  max-width: 840px;
}

.resource-library {
  display: grid;
  gap: 24px;
  padding: 92px max(24px, calc((100vw - 1120px) / 2));
}

.resource-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.resource-toolbar h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 2.8rem;
  line-height: 1.02;
}

.resource-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.resource-filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(25, 52, 114, 0.14);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.resource-filter.active {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  display: grid;
  grid-template-rows: minmax(220px, 0.8fr) 1fr;
  overflow: hidden;
  border: 1px solid rgba(25, 52, 114, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.resource-preview {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: #f6f8ff;
}

.resource-preview img,
.resource-preview iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  object-fit: cover;
}

.document-icon {
  width: 104px;
  height: 130px;
  display: grid;
  place-items: end center;
  padding: 0 0 20px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy-soft));
}

.document-icon span {
  font-size: 1.15rem;
  font-weight: 900;
}

.resource-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.resource-copy span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.08;
}

.resource-copy p,
.resource-copy small {
  margin: 0;
  color: var(--muted);
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.resource-actions a,
.resource-actions button,
.resource-pagination button,
.resource-modal-head button,
.resource-modal-fallback a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(25, 52, 114, 0.14);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.resource-actions button {
  border-color: transparent;
  color: var(--white);
  background: var(--blue);
}

.resource-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.resource-pagination[hidden],
.resource-modal[hidden] {
  display: none;
}

.resource-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.resource-empty {
  padding: 42px;
  border: 1px dashed rgba(25, 52, 114, 0.2);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
  text-align: center;
}

.resource-empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.35rem;
}

.modal-open {
  overflow: hidden;
}

.resource-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 13, 28, 0.72);
}

.resource-modal-panel {
  width: min(1120px, 100%);
  max-height: min(86svh, 920px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}

.resource-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(25, 52, 114, 0.12);
  background: var(--white);
}

.resource-modal-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.4rem;
}

.resource-modal-viewer {
  min-height: min(70svh, 760px);
  display: grid;
  place-items: center;
  background: #f6f8ff;
}

.resource-modal-viewer iframe,
.resource-modal-viewer img {
  width: 100%;
  height: 100%;
  min-height: min(70svh, 760px);
  border: 0;
  object-fit: contain;
}

.resource-modal-fallback {
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 36px;
}

.rate-section {
  display: grid;
  gap: 24px;
}

.rate-group {
  overflow: hidden;
}

.rate-group h2 {
  margin: 0;
  padding: 22px 24px;
  color: var(--white);
  background: var(--blue);
  font-size: 1.25rem;
}

.rate-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(25, 52, 114, 0.12);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  background: #f6f8ff;
}

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

td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.rate-group th:nth-child(3),
.rate-group th:nth-child(4),
.rate-group th:nth-child(5),
.rate-group th:nth-child(7),
.rate-group td:nth-child(3),
.rate-group td:nth-child(4),
.rate-group td:nth-child(5),
.rate-group td:nth-child(7) {
  white-space: nowrap;
}

.rate-group th:nth-child(7),
.rate-group td:nth-child(7) {
  min-width: 128px;
}

.compact-policy {
  margin: 0;
}

.error-hero {
  min-height: 100svh;
  background: var(--navy);
}

@media (max-width: 1080px) {
  .hero-content h1,
  .internal-hero h1 {
    font-size: 4rem;
  }

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

  .intro-band,
  .contact-band,
  .section-heading,
  .content-split,
  .detail-layout,
  .form-section {
    grid-template-columns: 1fr;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 68px;
  }

  .site-header {
    display: flex;
    align-items: stretch;
    padding-right: 110px;
  }

  .brand-logo {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    border-right: 0;
  }

  .brand-logo img {
    width: 150px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    flex: 0 0 110px;
    width: 110px;
    min-height: var(--header-h);
    border: 0;
    border-left: 1px solid var(--line);
    color: var(--white);
    background: rgba(160, 188, 255, 0.05);
    cursor: pointer;
    position: absolute;
    top: 0;
    right: auto;
    left: min(280px, calc(100vw - 110px));
    z-index: 45;
  }

  .menu-toggle span {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::before,
  .menu-toggle i::after {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .menu-toggle i {
    position: relative;
  }

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

  .menu-toggle i::before {
    top: -6px;
  }

  .menu-toggle i::after {
    top: 6px;
  }

  .site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 0 16px 16px;
    background: rgba(11, 15, 24, 0.96);
  }

  .site-menu.open {
    display: grid;
  }

  .site-menu a {
    min-height: 54px;
    justify-content: flex-start;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .site-menu .tracking-button {
    justify-content: center;
    margin-top: 10px;
  }

  .hero-content h1,
  .internal-hero h1 {
    font-size: 3rem;
  }

  .hero-content,
  .internal-hero-copy {
    width: min(100% - 32px, 1120px);
  }

  .intro-band,
  .contact-band,
  .section-dark,
  .section-light,
  .why-section,
  .news-grid,
  .resource-library,
  .rate-section,
  .form-section,
  .detail-layout,
  .content-split,
  .value-grid {
    padding: 64px 16px;
  }

  .policy-section {
    margin: 0 16px 64px;
    padding: 26px;
  }

  .service-grid,
  .why-grid,
  .value-grid,
  .news-grid,
  .resource-grid,
  .site-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .resource-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-filters {
    justify-content: flex-start;
  }

  .service-row,
  .service-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) .service-row-image {
    order: 0;
  }

  .service-row-copy {
    padding: 28px;
  }

  .service-row-copy h2,
  .intro-band h2,
  .contact-band h2,
  .section-heading h2,
  .content-split h2,
  .policy-section h2,
  .value-grid h2,
  .office-panel h2 {
    font-size: 2.15rem;
  }

  .footer-contact,
  .footer-bottom {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 520px) {
  .hero-content h1,
  .internal-hero h1 {
    font-size: 2.45rem;
  }

  .hero-actions-top a,
  .hero-quick a {
    width: 100%;
  }

  .service-card,
  .service-card img {
    min-height: 360px;
  }
}
