:root {
  --bg-main: #e8ebf2;
  --bg-card: #f9f9fc;
  --bg-navy: #172745;
  --bg-navy-2: #0f1d35;
  --text-main: #1c2740;
  --text-soft: #5a657a;
  --accent: #ef8a19;
  --accent-2: #d87300;
  --green: #2da64f;
  --green-2: #228741;
  --line: #d6dbe6;
  --shadow: 0 10px 25px rgba(20, 34, 63, 0.12);
  --radius: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(180deg, #eef1f7 0%, #e4e8f0 100%);
  color: var(--text-main);
  line-height: 1.4;
}

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

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


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 11px 20px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn--primary,
.btn--secondary,
.btn--phone {
  color: #fff;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 6px 14px rgba(216, 115, 0, 0.35);
}

.btn--whatsapp {
  color: #fff;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-2) 100%);
  box-shadow: 0 6px 14px rgba(34, 135, 65, 0.35);
}

.hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 75vh;
  background-image: linear-gradient(112deg, rgba(9, 20, 39, 0.84) 0%, rgba(11, 23, 45, 0.58) 42%, rgba(8, 17, 32, 0.22) 100%),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center 48%;
  box-shadow: var(--shadow);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2px 18px;
  background: rgba(8, 24, 54, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px 18px;
  min-height: 58px;
  color: #fff;
}

.topbar__menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240, 156, 52, 0.6);
  border-radius: 6px;
  color: #f6c17e;
  align-items: center;
  justify-content: center;
  background: rgba(8, 24, 54, 0.65);
}

.topbar__menu-toggle:hover {
  color: #fff;
  border-color: rgba(240, 156, 52, 0.9);
}

.topbar__brand a {
  font-size: clamp(1.85rem, 2.4vw, 2.35rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #f09c34;
  text-transform: uppercase;
}

.topbar__nav ul {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  list-style: none;
  font-weight: 500;
}

.topbar__nav a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  font-size: 1.03rem;
  color: #e8ecf5;
  transition: color 0.2s ease;
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f09c34 0%, #ef8a19 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
  color: #ffffff;
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
  transform: scaleX(1);
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 1.02rem;
  color: #f1f4f9;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.topbar__phone-icon {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  line-height: 1;
}

.topbar .btn--primary {
  border-radius: 4px;
  padding: 10px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(216, 115, 0, 0.35);
}

.hero__content {
max-width: 1200px;
    padding: 25px 34px 34px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__content h1 {
  margin: 0px 0px 30px;
  font-size: clamp(2.35rem, 4.4vw, 4.3rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #e7ebf3;
  text-shadow:
    0 2px 0 rgba(9, 20, 40, 0.55),
    0 10px 18px rgba(0, 0, 0, 0.38);
  text-wrap: balance;
}

.hero__content p {
  margin: 16px 0 0;
  font-size: clamp(1.15rem, 1.8vw, 1.95rem);
  font-weight: 500;
  line-height: 1.35;
  color: #e4eaf7;
  max-width: 700px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

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

.hero__actions .btn {
  min-width: 220px;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 7px;
}

.highlights {
  position: relative;
  z-index: 10;
  margin: -30px auto 0;
  width: min(100% - 24px, calc(var(--container) - 32px));
}

.highlights__list {
  margin: 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, #fcfcfe 0%, #f3f4f8 100%);
  border: 1px solid #d8dce6;
  border-radius: 4px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  box-shadow: 0 8px 22px rgba(15, 27, 52, 0.2), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.highlights__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
  min-height: 76px;
}

.highlights__item:not(:last-child) {
  border-right: 1px solid #d4d8e2;
}

.highlights__icon {
  width: 60px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #223353;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.highlights__icon i {
  display: inline-block;
  width: 1.25em;
  text-align: center;
}

.highlights__item:nth-child(1) .highlights__icon {
  color: #2a4e91;
}

.highlights__item:nth-child(2) .highlights__icon {
  color: #c87412;
}

.highlights__item:nth-child(3) .highlights__icon {
  color: #2d6f9e;
}

.highlights__item:nth-child(4) .highlights__icon {
  color: #4a57a1;
}

.highlights__item h3 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2f50;
}

.services,
.about,
.contact {
  margin-top: 54px;
  padding: 75px;
}

.section-header {
  text-align: center;
  margin-bottom: 55px;
}

.section-header h2 {
  margin: 0;
  color: var(--bg-navy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.section-header p {
  margin: 9px 0 0;
  font-size: 1.28rem;
  color: var(--text-soft);
}

.section-header--services h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  max-width: 920px;
  color: #1a2950;
  letter-spacing: 0.3px;
}

.section-header--services h2::before,
.section-header--services h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 206, 220, 0) 0%, #ccd2e0 45%, #ccd2e0 100%);
}

.section-header--services h2::after {
  background: linear-gradient(90deg, #ccd2e0 0%, #ccd2e0 55%, rgba(200, 206, 220, 0) 100%);
}

.section-header--services p {
  margin-top: 8px;
  color: #4b5873;
  font-size: clamp(1rem, 1.6vw, 1.9rem);
  letter-spacing: 0.2px;
}

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

.service-card {
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #f8f9fc 0%, #eef1f7 100%);
  border: 1px solid #d4daea;
  box-shadow: 0 8px 20px rgba(22, 35, 64, 0.14);
}

.service-card__media {
  margin: 0;
  height: 353px;
  background: linear-gradient(145deg, #cad3e6 0%, #94a3c5 100%);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  padding: 25px 18px 25px;
  background: linear-gradient(180deg, #f7f8fc 0%, #f1f3f9 100%);
}

.service-card__row {
  display: grid;
  grid-template-columns: 15% 85%;
  align-items: start;
  gap: 0;
}

.service-card__col-3 {
  display: flex;
  justify-content: center;
  padding-top: 2px;
  height: 100%;
  align-items: center;
}

.service-card__col-9 {
  padding-right: 4px;
}

.service-card__icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #223353;
}

.service-card__icon i {
  font-size: 1.9rem;
  width: 1.25em;
  text-align: center;
}

.service-card:nth-child(1) .service-card__icon {
  color: #2a4e91;
}

.service-card:nth-child(2) .service-card__icon {
  color: #c87412;
}

.service-card:nth-child(3) .service-card__icon {
  color: #2d6f9e;
}

.service-card:nth-child(4) .service-card__icon {
  color: #4a57a1;
}

.service-card__col-9 h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.15;
  color: #1f2f50;
  letter-spacing: 0.4px;
}

.service-card__col-9 p {
  margin: 6px 0 12px;
  color: #3b4863;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card .btn--secondary {
  padding: 8px 22px;
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 700;
  min-width: 178px;
  justify-content: center;
}

.service-card .btn--secondary i {
  margin-right: 9px;
  font-size: 0.8rem;
}

.service-card__arrow {
  color: #cb9a5f;
  font-size: 1rem;
  opacity: 0.95;
  transform: translateY(1px);
}

.about {
  text-align: center;
}

.about-panel {
  text-align: left;
  border: 1px solid #d5dbe8;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #fafbff 0%, #f2f4fa 100%);
  box-shadow: 0 12px 24px rgba(20, 34, 63, 0.11);
}

.about-panel__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.about-panel__content {
  padding: 80px 70px 40px;
}

.about-panel__content h3 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  line-height: 1.1;
  color: #ce7420;
  letter-spacing: 0.2px;
}

.about-panel__content > p {
  margin: 0 0 10px;
  color: #33435f;
  font-size: 1rem;
  line-height: 1.52;
}

.about-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.about-points__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff0de 0%, #fddcb8 100%);
  border: 1px solid #e8ba85;
  color: #b86b1f;
  margin-top: 2px;
}

.about-points h4 {
  margin: 0 0 2px;
  color: #1d2d4d;
  font-size: 1.08rem;
}

.about-points p {
  margin: 0;
  color: #40506c;
  font-size: 0.95rem;
  line-height: 1.45;
}

.about-panel__media {
  border-left: 1px solid #d5dbe8;
  background: #f4f6fb;
  display: flex;
  flex-direction: column;
}

.about-panel__media figure {
  margin: 0;
  min-height: 100%;
}

.about-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.about-panel__contact {
  padding: 14px 16px;
  border-top: 1px solid #d7deeb;
  background: #f8f9fd;
}

.about-panel__contact p {
  margin: 0;
  color: #2f3f5d;
  font-size: 0.94rem;
  line-height: 1.5;
}

.about-panel__contact-items {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.about-panel__contact-items a {
  color: #1f2f50;
  font-weight: 700;
  font-size: 0.95rem;
}

.about-panel__contact-items i {
  margin-right: 6px;
  color: #2d8a3f;
}

.about-panel__foot {
  margin: 0;
  padding: 14px 20px;
  border-top: 1px solid #d5dbe8;
  background: #f3f5fa;
  color: #2f3f5d;
  font-size: 1rem;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: linear-gradient(180deg, #f8f9fd 0%, #f0f3fa 100%);
  border-radius: 8px;
  border: 1px solid #d6dceb;
  box-shadow: 0 6px 16px rgba(20, 34, 63, 0.09);
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 6px;
}

.contact-form__flash {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form__flash--success {
  color: #1a5f2f;
  background: #e9f7ed;
  border-color: #a8e0b7;
}

.contact-form__flash--error {
  color: #8a1f2d;
  background: #fdecef;
  border-color: #f4bcc5;
}

.contact-form label {
  font-weight: 500;
  color: #2f3f5e;
  font-size: 0.82rem;
  letter-spacing: 0.2px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ccd3e2;
  border-radius: 4px;
  padding: 7px 10px;
  font: inherit;
  color: var(--text-main);
  background: #fdfdff;
  box-shadow: inset 0 1px 2px rgba(30, 45, 74, 0.06);
}

.contact-form textarea {
  resize: none;
  min-height: 84px;
}

.contact-form .btn--primary {
  margin-top: 6px;
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 1rem;
}

.contact-form__actions {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}

.contact-form__actions .btn {
  flex: 1;
  padding: 7px 8px;
  font-size: 1rem;
  border-radius: 4px;
  min-height: 32px;
}

.contact-form__actions .btn i {
  margin-right: 6px;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-info__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.contact-info__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2f3f5e;
  font-weight: 600;
  font-size: 1.14rem;
  line-height: 1.25;
}

.contact-info__list i {
  width: 18px;
  text-align: center;
  color: #c7761f;
}

.contact-info__list a {
  color: inherit;
}

.map {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ced5e5;
  background: #fff;
}

.map img,
.footer-map img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  background: linear-gradient(135deg, #d9dfec 0%, #afbcd7 100%);
}

.map figcaption,
.footer-map figcaption {
  padding: 9px 12px;
  font-size: 0.92rem;
  color: #3a4761;
}

.map figcaption i {
  margin-right: 6px;
  color: #6b788f;
}

.site-footer {
  margin-top: 22px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(140deg, rgba(14, 28, 54, 0.96) 0%, rgba(23, 39, 72, 0.95) 100%),
    url("https://images.unsplash.com/photo-1509023464722-18d996393ca8?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr;
  gap: 18px;
  padding: 40px 18px 14px;
  color: #e9edf8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-col {
  min-width: 0;
}

.footer-col--brand h2 {
  margin: 0 0 7px;
  color: #f09c34;
  font-size: 2.05rem;
  line-height: 1;
  letter-spacing: 0.3px;
}

.footer-col--brand p {
  margin: 0;
  color: #c9d3e8;
  font-size: 0.97rem;
  line-height: 1.25;
}

.footer-schedule {
  margin-top: 7px;
  font-size: 0.72rem;
  color: #9fb0cf;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 7px;
  margin-bottom: 8px;
}

.footer-nav a {
  color: #e0e8f8;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c5d0e5;
  font-size: 1.02rem;
}

.footer-contact i {
  color: #f09c34;
  width: 14px;
  text-align: center;
}

.footer-contact a {
  color: inherit;
}

.footer-col--cta {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-col--cta .btn {
  width: 30%;
  min-height: 34px;
  border-radius: 4px;
  font-size: 1rem;
  padding: 7px 12px;
}

.footer-col--cta .btn i {
  margin-right: 6px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding-top: 4px;
}

.footer-social a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d8e1f3;
  border: 1px solid rgba(216, 225, 243, 0.35);
  border-radius: 4px;
  font-size: 0.88rem;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  background: rgba(8, 16, 31, 0.75);
  color: #b7c3db;
  font-size: 0.88rem;
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__credit {
  white-space: nowrap;
}

.site-footer__credit a {
  color: #f09c34;
  font-weight: 700;
}

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

  .topbar__brand {
    text-align: center;
  }

  .topbar__nav {
    order: 3;
    width: 100%;
  }

  .topbar__nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

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

  .highlights__item:nth-child(2n) {
    border-right: 0;
  }

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

  .footer-col--cta {
    grid-column: span 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .footer-social {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .home,
  .site-footer {
  }

  .hero {
    min-height: 470px;
  }

  .topbar__brand a {
    font-size: 1.6rem;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    row-gap: 8px;
    position: relative;
    overflow: visible;
  }

  .topbar__menu-toggle {
    display: inline-flex;
  }

  .topbar__nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    width: 100%;
    background: rgba(8, 24, 54, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 0 14px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
  }

  .topbar.is-menu-open .topbar__nav {
    max-height: 300px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .topbar__nav ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }

  .topbar__contact {
    grid-column: 1 / -1;
    justify-content: center;
    padding-left: 0;
    border-left: 0;
  }

  .topbar__phone {
    padding-right: 0;
    border-right: 0;
  }

  .topbar__contact .btn {
    margin-left: 4px;
    width: 100%;
    max-width: 280px;
  }

  .hero__content p {
    font-size: 1.05rem;
  }

  .hero__actions {
    margin-top: 26px;
  }

  .hero__actions .btn {
    min-width: 190px;
    padding: 11px 18px;
  }

  .services,
  .about,
  .contact {
    padding: 18px;
  }

  .services__grid,
  .about-panel__grid,
  .contact__layout,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .about-panel__content {
    padding: 20px 18px 14px;
  }

  .about-panel__media {
    border-left: 0;
    border-top: 1px solid #d5dbe8;
  }

  .about-panel__media img {
    min-height: 260px;
  }

  .service-card__media {
    height: 200px;
  }

  .contact-form__actions {
    flex-direction: column;
  }

  .contact-form__actions .btn,
  .footer-col--cta .btn {
    width: 100%;
  }

  .footer-col--cta {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

@media (max-width: 580px) {
  .topbar {
    padding: 12px 14px;
  }

  .hero__content {
    padding: 30px 14px 24px;
  }

  .hero__actions .btn,
  .topbar__contact .btn {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .highlights {
    width: min(100% - 20px, calc(var(--container) - 20px));
    margin-top: -18px;
  }

  .highlights__list {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .highlights__item {
    border-right: 0;
    padding: 8px 4px;
  }

  .highlights__item h3 {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header--services h2 {
    gap: 10px;
  }

  .section-header p,
  .service-card__col-9 p {
    font-size: 0.98rem;
  }

  .service-card__col-9 h3 {
    font-size: 1rem;
  }

  .site-footer__main {
    padding: 16px;
  }

  .footer-col--brand h2 {
    font-size: 1.55rem;
  }

  .site-footer__legal {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
  }
}
