:root {
  --blue-950: #08233c;
  --blue-900: #123f67;
  --blue-800: #15517f;
  --blue-600: #2479b8;
  --blue-300: #8ed7f5;
  --orange-600: #ee6b18;
  --orange-500: #ff7a1a;
  --orange-100: #fff0df;
  --lime-500: #c4d63c;
  --ink: #162033;
  --muted: #65748b;
  --line: #dbe4ee;
  --paper: #ffffff;
  --soft: #f3f8fc;
  --shadow: 0 24px 70px rgba(8, 35, 60, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17, 75, 119, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  width: min(1260px, calc(100% - 40px));
  min-height: 116px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex: 0 1 auto;
  min-width: 0;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: 205px;
  height: 104px;
  flex: 0 0 205px;
  padding: 3px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  opacity: 0.96;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.15vw, 20px);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
}

.site-menu a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-menu a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.phone-link {
  color: #fff;
  max-width: none;
  white-space: nowrap;
  line-height: 1;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange-500), #ffb13c);
  color: #12233d;
  box-shadow: 0 14px 28px rgba(238, 107, 24, 0.25);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  overflow: hidden;
  background: radial-gradient(circle at 70% 28%, rgba(142, 215, 245, 0.34), transparent 30%),
    linear-gradient(130deg, #0e385c 0%, #18598a 52%, #287fb8 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
}

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

.hero::before {
  width: 500px;
  height: 500px;
  right: -260px;
  top: 132px;
  border: 26px solid rgba(255, 122, 26, 0.58);
  box-shadow: inset 0 0 0 18px rgba(142, 215, 245, 0.18), 0 0 60px rgba(255, 122, 26, 0.22);
}

.hero::after {
  width: 380px;
  height: 16px;
  left: -90px;
  bottom: 110px;
  background: linear-gradient(90deg, transparent, #ff7a1a 18%, #ee2f87 57%, transparent);
  transform: rotate(-8deg);
  filter: blur(0.3px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 34px;
  align-items: center;
  padding: 64px 0;
}

.hero-copy {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #eaf9ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  background: var(--orange-100);
  color: #a9490c;
}

.hero h1 {
  max-width: 640px;
  margin: 24px 0 18px;
  font-size: clamp(2.25rem, 4.15vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.62;
  font-weight: 500;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), #ffc24e);
  color: #14233d;
  box-shadow: 0 18px 34px rgba(238, 107, 24, 0.28);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-hero-whatsapp {
  background: linear-gradient(135deg, #1fb45a, #25d366);
  color: #fff;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.24);
}

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

.trust-row span {
  min-height: 66px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.trust-row b {
  display: block;
  color: #fff;
  font-size: 1.02rem;
}

.btn-whatsapp {
  width: 100%;
  background: linear-gradient(135deg, #20bf5a, #25d366);
  color: #fff;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.3);
}

form {
  display: grid;
  gap: 9px;
}

label {
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 86px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(36, 121, 184, 0.12);
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--orange-500), #ffc348);
  color: #10213a;
  box-shadow: 0 16px 34px rgba(238, 107, 24, 0.28);
}

.safe-note {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.services-section {
  padding: 92px 0;
  background: linear-gradient(180deg, #f3f8fc, #ffffff);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.feature-band h2,
.contact-strip h2 {
  margin: 14px 0 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.contact-strip p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.service-card {
  min-height: 285px;
  padding: 0 0 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 48, 78, 0.08);
  overflow: hidden;
}

.service-card h3 {
  margin: 18px 24px 12px;
  color: var(--blue-950);
  font-size: 1.28rem;
}

.service-card p {
  margin: 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: -31px 0 0 24px;
  border-radius: 50%;
  background: #f8fbfe;
  box-shadow: inset 0 0 0 1px #d7e2ec, 0 10px 28px rgba(8, 35, 60, 0.12);
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.image-icon::before,
.image-icon::after {
  display: none;
}

.image-icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.image-icon.flame-img-icon img,
.image-icon.cold-img-icon img {
  width: 54px;
  height: 54px;
}

.image-icon.cold-img-icon img {
  border-radius: 50%;
}

.image-icon.meter-img-icon img,
.image-icon.leak-img-icon img,
.image-icon.heater-img-icon img,
.image-icon.pump-img-icon img {
  width: 50px;
  height: 50px;
}

.image-icon.fit-icon img {
  width: 44px;
  height: 52px;
  object-fit: contain;
}

.image-icon.leak-img-icon img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
}

.flame-icon::before {
  width: 23px;
  height: 32px;
  border-radius: 24px 24px 24px 4px;
  background: linear-gradient(180deg, #ff8b25, #d63d09);
  transform: rotate(35deg);
}

.flame-icon::after {
  width: 10px;
  height: 16px;
  border-radius: 999px 999px 999px 2px;
  background: #ffd29d;
  transform: translateY(7px) rotate(35deg);
}

.chimney-icon::before {
  width: 28px;
  height: 30px;
  border: 4px solid var(--orange-500);
  border-radius: 6px;
  background: #fff6ec;
  box-shadow: 0 -13px 0 -4px var(--blue-600);
}

.chimney-icon::after {
  width: 36px;
  height: 4px;
  bottom: 15px;
  border-radius: 999px;
  background: var(--blue-600);
  box-shadow: 0 -10px 0 -1px rgba(36, 121, 184, 0.45);
}

.heater-icon::before {
  width: 30px;
  height: 36px;
  border: 4px solid var(--orange-500);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff6ec, #ffffff);
}

.heater-icon::after {
  width: 18px;
  height: 18px;
  border: 4px solid var(--blue-600);
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 10px 0;
  background: var(--blue-600);
  transform: translate(13px, 11px);
}

.snow-icon::before {
  width: 36px;
  height: 22px;
  border: 4px solid var(--blue-600);
  border-radius: 8px;
  background: #eaf8ff;
  box-shadow: inset 0 -5px 0 rgba(36, 121, 184, 0.14);
}

.snow-icon::after {
  bottom: 18px;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue-600);
  box-shadow: 0 7px 0 rgba(36, 121, 184, 0.55), 11px 13px 0 -1px #8ed7f5, -11px 13px 0 -1px #8ed7f5;
}

.meter-icon::before {
  width: 34px;
  height: 34px;
  border: 4px solid var(--orange-500);
  border-radius: 50%;
  background: #fff6ec;
}

.meter-icon::after {
  width: 17px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue-600);
  transform: rotate(-28deg);
  transform-origin: left center;
  box-shadow: 12px 8px 0 -1px var(--orange-500), -12px 8px 0 -1px var(--orange-500);
}

.leak-icon::before {
  width: 36px;
  height: 16px;
  border: 4px solid var(--orange-500);
  border-right: 0;
  border-radius: 12px 0 0 12px;
  background: #fff6ec;
  transform: translateX(-4px);
}

.leak-icon::after {
  right: 12px;
  bottom: 13px;
  width: 10px;
  height: 16px;
  border-radius: 999px 999px 999px 2px;
  background: linear-gradient(180deg, #ff8b25, #d63d09);
  transform: rotate(35deg);
}

.water-icon::before {
  width: 32px;
  height: 24px;
  border: 4px solid var(--blue-600);
  border-radius: 999px;
  background: linear-gradient(180deg, #e8f8ff, #bfeeff);
  box-shadow: inset -6px 0 0 rgba(36, 121, 184, 0.14);
}

.water-icon::after {
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue-600);
  box-shadow: -16px -9px 0 -1px var(--blue-600), 16px 9px 0 -1px var(--blue-600), 0 13px 0 -1px #8ed7f5;
}

.hot {
  border-top: 5px solid var(--orange-500);
}

.cold {
  border-top: 5px solid var(--blue-300);
}

.water {
  border-top: 5px solid var(--blue-600);
}

.feature-band {
  padding: 84px 0;
  background: var(--blue-950);
  color: #fff;
}

.about-section {
  padding: 84px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.about-section h2 {
  margin: 14px 0 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.about-copy {
  display: grid;
  gap: 16px;
  padding-left: 28px;
  border-left: 4px solid var(--orange-500);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.feature-band h2 {
  color: #fff;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-list strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.08rem;
}

.feature-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  line-height: 1.65;
}

.contact-strip {
  padding: 80px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfe;
  color: var(--blue-900);
  font-size: 1.25rem;
  font-weight: 900;
}

.contact-phone.secondary {
  color: #a9490c;
}

.whatsapp-contact {
  min-height: 74px;
  border: 0;
  background: linear-gradient(135deg, #1fb45a, #25d366);
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.25);
}

.whatsapp-contact.secondary {
  color: #fff;
  background: linear-gradient(135deg, #15994a, #20bf5a);
}

.whatsapp-contact span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.instagram-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #405de6 0%, #833ab4 34%, #e1306c 67%, #fd9b36 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(225, 48, 108, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(225, 48, 108, 0.3);
}

.instagram-contact small {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.instagram-icon {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 38px;
  object-fit: contain;
}

.email-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1b75bb, #58c7ed);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(36, 121, 184, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.email-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(36, 121, 184, 0.3);
}

.email-contact small {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.email-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 32px;
  flex: 0 0 42px;
  border: 3px solid #fff;
  border-radius: 8px;
}

.email-icon::before,
.email-icon::after {
  position: absolute;
  top: 8px;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  content: "";
}

.email-icon::before {
  left: 0;
  transform: rotate(32deg);
}

.email-icon::after {
  right: 0;
  transform: rotate(-32deg);
}

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

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  display: block;
  color: #fff;
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-email {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-email:hover {
  color: #fff;
}

.footer-side {
  text-align: right;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.footer-instagram {
  position: relative;
  padding-left: 22px;
}

.footer-instagram::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 5px;
  transform: translateY(-50%);
  content: "";
}

.footer-instagram::after {
  position: absolute;
  left: 5px;
  top: 50%;
  width: 4px;
  height: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.legal-page {
  background: #fff;
}

.legal-hero {
  padding: 78px 0 58px;
  background: radial-gradient(circle at 82% 20%, rgba(255, 122, 26, 0.28), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: #fff;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 22px 0 12px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1;
}

.legal-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.legal-content {
  max-width: 900px;
  padding: 64px 0 82px;
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--blue-950);
  font-size: 1.32rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.legal-content a {
  color: var(--blue-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-menu {
  display: flex;
}

@media (max-width: 1180px) {
  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 8px;
    background: var(--blue-950);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu.legal-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-menu a {
    padding: 14px;
  }

  .phone-link {
    max-width: none;
    white-space: nowrap;
  }

  .hero-grid,
  .section-heading,
  .about-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
    padding: 52px 0;
  }

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

@media (max-width: 640px) {
  .container,
  .nav-wrap {
    width: min(100% - 28px, 1260px);
  }

  .nav-wrap {
    min-height: 94px;
  }

  .brand small {
    max-width: 150px;
  }

  .brand-logo {
    width: 140px;
    height: 72px;
    flex-basis: 140px;
  }

  .site-menu.legal-menu {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .hero-actions,
  .trust-row,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .trust-row {
    display: grid;
  }

  .services-section,
  .about-section,
  .feature-band,
  .contact-strip {
    padding: 62px 0;
  }

  .about-copy {
    padding-left: 18px;
  }

  .service-card {
    min-height: auto;
  }

  .footer-grid {
    display: grid;
  }

  .footer-side {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
