:root {
  --nav-blue-start: #234f87;
  --nav-blue-end: #0f3f76;
  --nav-shadow: rgba(7, 27, 52, 0.28);
  --text-light: #eef6ff;
  --text-soft: rgba(238, 246, 255, 0.78);
  --accent-cyan: #6dd6ff;
  --page-bg: #f1f3f7;
  --section-blue: #1787df;
  --section-navy: #1d4f93;
  --copy-dark: #55657c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--page-bg);
  color: #123;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transition: transform 0.25s ease;
}

.custom-navbar {
  background: linear-gradient(90deg, rgba(35, 79, 135, 0.88) 0%, rgba(15, 63, 118, 0.8) 100%);
  min-height: 100px;
  margin-right: 14px;
  border-bottom-right-radius: 78px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px var(--nav-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    min-height 0.25s ease,
    border-radius 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.custom-navbar.menu-open {
  background: linear-gradient(90deg, rgba(35, 79, 135, 0.95) 0%, rgba(15, 63, 118, 0.92) 100%);
}

.navbar-shell {
  max-width: none;
  width: 100%;
  padding: 0 50px 0 50px;
  transition: padding 0.25s ease;
}

.brand-mark {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  max-width: min(100%, 420px);
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(100%, 240px);
  object-fit: contain;
  object-position: left center;
  transition: height 0.25s ease;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.14rem;
  min-width: 0;
  line-height: 1;
  color: #eef6ff;
  text-transform: uppercase;
}

.brand-copy strong {
  display: block;
  max-width: 100%;
  font-size: 1rem;
  letter-spacing: 0.08em;
  white-space: normal;
  overflow-wrap: anywhere;
}

.brand-copy small {
  display: block;
  max-width: 100%;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(238, 246, 255, 0.78);
  text-transform: none;
  white-space: normal;
  overflow-wrap: anywhere;
}

.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.8rem 0.05rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.custom-navbar.is-compact {
  min-height: 76px;
  border-bottom-right-radius: 52px;
  box-shadow: 0 8px 18px rgba(7, 27, 52, 0.22);
}

.custom-navbar.is-compact .navbar-shell {
  padding-top: 0;
  padding-bottom: 0;
}

.custom-navbar.is-compact .brand-logo {
  height: 54px;
}

.custom-navbar.is-compact .navbar-nav .nav-link {
  padding-top: 0.62rem;
  padding-bottom: 0.62rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--text-light);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.35rem;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.navbar-toggler {
  padding-right: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 560px;
}

.hero-carousel .carousel-item {
  position: relative;
}

.hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 16, 29, 0.18) 0%, rgba(5, 16, 29, 0.28) 45%, rgba(5, 16, 29, 0.52) 100%);
  z-index: 1;
}

.hero-image {
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.hero-caption {
  z-index: 2;
  top: 148px;
  bottom: auto;
  right: auto;
  left: 8%;
  max-width: 560px;
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
}

.hero-caption.text-end {
  top: 148px;
  right: 8%;
  left: auto;
  max-width: 560px;
  text-align: right;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #9fe5ff;
}

.hero-caption h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
  color: #fff;
}

.hero-caption p {
  max-width: 46ch;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-caption.text-end p {
  margin-left: auto;
}

.hero-cta {
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  background: #ffffff;
  border: 0;
  color: #0f3f76;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-cta:hover,
.hero-cta:focus {
  background: #dff7ff;
  color: #0f3f76;
}

.carousel-indicators {
  bottom: 1.1rem;
  z-index: 3;
}

.carousel-indicators [data-bs-target] {
  width: 42px;
  height: 4px;
  margin: 0 5px;
  border: 0;
  border-radius: 999px;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 3;
  width: 7%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.4rem;
  height: 2.4rem;
}

.about-overview {
  padding: 0;  
  background-color: #fff;
}

.about-shell {
  display: grid;
  grid-template-columns: 55.4% 25%;
  justify-content: start;
  align-items: start;
  width: 100%;
}

.about-story {
  background: #fff;
  padding: 34px 56px 16px 78px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  margin-top: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #1f9bff;
}

.title-ribbon {
  margin: 0 0 16px;
}

.title-ribbon span {
  display: inline-block;
  width: 332px;
  margin-left: -78px;
  padding: 4px 14px 6px 78px;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  background: #1d4f93;
}

.about-story p,
.services-card p {
  margin: 0 0 22px;
  max-width: 675px;
  font-size: 0.95rem;
  line-height: 1.14;
  color: var(--copy-dark);
}

.about-image {
  display: block;
  width: calc(100% + 78px);
  height: 250px;
  margin-top: 8px;
  margin-left: -78px;
  object-fit: cover;
}

.about-pillars {
  position: relative;
  z-index: 2;
  align-self: stretch;
  /* margin-top: -6px; */
  margin-bottom: -112px;
  padding: 70px 36px 42px 18px;
  background: var(--section-blue);
  color: #fff;
  border-bottom-left-radius: 82px;
}

.pillar-card + .pillar-card {
  margin-top: 16px;
}

.pillar-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 10px -38px;
  padding: 5px 24px 5px;
  width: 262px;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--section-navy);
}

.pillar-icon {
  display: inline-block;
  min-width: 18px;
  font-size: 1.45rem;
  line-height: 1;
  color: #21b0ff;
}

.pillar-card p {
  margin: 0 0 8px 56px;
  font-size: 0.93rem;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.96);
}

.pillar-values p {
  margin-bottom: 7px;
}

.services-highlight {
  padding: 0 34px 78px;
}

.services-card {
  max-width: 1420px;
  margin: 0 auto;
  margin-top: 50px;
  padding: 26px 36px 26px;
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 10px 18px rgba(69, 98, 133, 0.16), 0 2px 4px rgba(69, 98, 133, 0.08);
}

.services-card p {
  max-width: none;
  margin-bottom: 24px;
}

.services-card h2 {
  margin: 0 0 18px;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #1d4f93;
}

.services-cards-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin: 60px auto 0;
  max-width: 1420px;
}

.service-tile {
  position: relative;
  padding-top: 36px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 10px 18px rgba(69, 98, 133, 0.12), 0 2px 4px rgba(69, 98, 133, 0.08);
  overflow: visible;
  text-align: center;
}

.service-tile-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  line-height: 1;
  color: #168cf0;
}

.service-tile-head {
  min-height: 72px;
  padding: 24px 16px 12px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.02;
  text-transform: uppercase;
  color: #1d4f93;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-tile-media {
  height: 148px;
  background: #56657b;
  overflow: hidden;
}

.service-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-tile p {
  min-height: 104px;
  margin: 0;
  padding: 32px 22px 26px;
  font-size: 0.92rem;
  line-height: 1.15;
  font-weight: 500;
  color: #5b6779;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.portfolio-section {
  width: 100%;
  padding: 0 0 86px;
}

.portfolio-shell {
  max-width: none;
  margin: 0 auto;
  background: #fff;
}

.portfolio-header {
  padding: 28px 24px 34px;
  text-align: center;
}

.portfolio-header .section-kicker {
  margin-bottom: 8px;
  font-size: 0.8rem;
}

.portfolio-header h2 {
  margin: 0 0 10px;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #1d4f93;
}

.portfolio-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.16;
  color: #5a667a;
}

.portfolio-showcase {
  position: relative;
  padding: 30px 78px 72px;
  background: #eef1f5;
}

.portfolio-carousel .carousel-inner {
  overflow: hidden;
}

.portfolio-slide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.portfolio-product-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(69, 98, 133, 0.12), 0 2px 4px rgba(69, 98, 133, 0.08);
}

.portfolio-product-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.portfolio-product-link:focus-visible {
  outline: 3px solid rgba(29, 79, 147, 0.26);
  outline-offset: -3px;
}

.portfolio-product-media {
  height: 214px;
  background: #d9e0e8;
}

.portfolio-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-product-body {
  min-height: 104px;
  padding: 20px 16px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.portfolio-product-body h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.16;
  text-transform: uppercase;
  color: #55657c;
}

.portfolio-control {
  width: 48px;
  opacity: 1;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.portfolio-control.carousel-control-prev {
  left: 18px;
}

.portfolio-control.carousel-control-next {
  right: 18px;
}

.portfolio-control .carousel-control-prev-icon,
.portfolio-control .carousel-control-next-icon {
  width: 2.35rem;
  height: 2.35rem;
  filter: brightness(0) saturate(100%) invert(100%) drop-shadow(0 2px 3px rgba(70, 90, 115, 0.22));
}

.portfolio-indicators {
  position: static;
  margin: 32px 0 0;
}

.portfolio-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 999px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(113, 128, 150, 0.2);
  opacity: 1;
}

.portfolio-indicators .active {
  background-color: #d6dbe1;
}
.site-footer {
  margin-top: 34px;
}

.footer-brand-band {
  background: #173f78;
}

.footer-main-band {
  background: #1f4f93;
}

.footer-shell {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 86px;
  padding-right: 86px;
}

.footer-brand-shell {
  min-height: 124px;
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  max-width: min(100%, 460px);
  text-decoration: none;
}

.footer-brand-logo {
  display: block;
  max-width: 100%;
  width: auto;
  height: clamp(56px, 6vw, 80px);
  object-fit: contain;
  object-position: left center;
}

.footer-brand .brand-copy strong {
  font-size: 1.08rem;
}

.footer-brand .brand-copy small {
  font-size: 0.72rem;
}

.footer-main-shell {
  position: relative;
  padding-top: 28px;
  padding-bottom: 18px;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.9fr 1.35fr;
  gap: 54px;
  position: relative;
  z-index: 2;
}

.footer-column h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #35c7ff;
}

.footer-column a,
.footer-column strong,
.footer-news-column p,
.footer-contact-row p,
.footer-bottom p {
  display: block;
  margin: 0 0 12px;
  font-size: 0.96rem;
  line-height: 1.18;
  color: #fff;
  text-decoration: none;
}

.footer-column a {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding-right: 0.25rem;
  transition: color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #9fe5ff;
  transform: translateX(6px);
}

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

.footer-column a:focus-visible {
  outline: none;
}

.footer-column strong {
  color: #35c7ff;
  font-weight: 700;
}

.footer-news-column p {
  margin-bottom: 14px;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 430px;
  margin-bottom: 28px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, #3587ea 0%, #5ba5ff 72%, #ffffff 72%, #ffffff 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-newsletter input {
  flex: 1;
  min-width: 0;
  padding: 10px 16px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.94rem;
  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.footer-newsletter button {
  width: 66px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #4a91df;
  font-size: 1.55rem;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
}

.footer-contact-row i {
  font-size: 2.15rem;
  line-height: 1;
  color: #3ea8ff;
}

.footer-contact-row p {
  margin-bottom: 0;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.footer-socials a {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 159, 236, 0.62);
  color: #1a4e8c;
  font-size: 1.85rem;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(7, 27, 52, 0);
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-4px) scale(1.04);
  background: #ffffff;
  color: #0f3f79;
  box-shadow: 0 14px 24px rgba(7, 27, 52, 0.24);
}

.footer-socials a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.footer-socials a:active {
  transform: translateY(-1px) scale(0.98);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 2px;
}

.footer__credit {
  margin-top: 6px;
}

.footer-privacy-link,
.footer-credit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.72rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer-privacy-link:hover,
.footer-privacy-link:focus-visible,
.footer-credit-link:hover,
.footer-credit-link:focus-visible {
  color: #173f78;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
}

.footer-privacy-link:focus-visible,
.footer-credit-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

@media (max-width: 991.98px) {
  .services-cards-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 26px;
  }

  .service-tile {
    padding-top: 34px;
  }

  .service-tile-icon {
    top: -10px;
    font-size: 2.35rem;
  }

  .service-tile-head {
    min-height: 64px;
    padding-top: 22px;
    font-size: 0.9rem;
  }

  .service-tile-media {
    height: 124px;
  }

  .service-tile p {
    min-height: 88px;
    padding: 24px 16px 22px;
  }

  .portfolio-section {
    padding: 0 16px 56px;
  }

  .portfolio-header {
    padding: 24px 16px 26px;
  }

  .portfolio-header h2 {
    font-size: 1.72rem;
  }

  .portfolio-showcase {
    padding: 24px 52px 60px;
  }

  .portfolio-slide-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-product-media {
    height: 220px;
  }

  .portfolio-product-body {
    min-height: 96px;
  }

  .portfolio-control {
    width: 42px;
  }

  .portfolio-control.carousel-control-prev {
    left: 4px;
  }

  .portfolio-control.carousel-control-next {
    right: 4px;
  }

  .footer-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-brand-shell {
    min-height: 96px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .footer-brand-logo {
    height: clamp(44px, 12vw, 64px);
  }

  .footer-brand {
    gap: 0.7rem;
    max-width: 100%;
  }

  .footer-main-shell {
    padding-top: 24px;
  }

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

  .footer-newsletter {
    max-width: none;
  }

  .footer-socials {
    gap: 12px;
    margin-bottom: 26px;
  }

  .footer-socials a {
    width: 46px;
    height: 46px;
    font-size: 1.55rem;
  }

  .custom-navbar {
    margin-right: 8px;
    min-height: 98px;
    border-bottom-right-radius: 40px;
  }

  .custom-navbar.is-compact {
    min-height: 82px;
    border-bottom-right-radius: 30px;
  }

  .navbar-shell {
    padding: 0.75rem 0.9rem 0.75rem 0.75rem;
  }

  .brand-mark {
    gap: 0.65rem;
    max-width: calc(100% - 60px);
  }

  .brand-logo {
    height: 52px;
    max-width: 170px;
  }

  .brand-copy strong {
    font-size: 0.86rem;
    letter-spacing: 0.05em;
  }

  .brand-copy small {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .navbar-collapse {
    margin-top: 0.9rem;
    padding: 0.5rem 0 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .navbar-nav {
    align-items: flex-start !important;
    gap: 0.1rem;
  }

  .navbar-nav .nav-link {
    padding: 0.7rem 0;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .navbar-nav .nav-link.active::after,
  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link:focus::after {
    width: 40px;
  }

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-image {
    height: 430px;
  }

  .hero-caption,
  .hero-caption.text-end {
    top: 122px;
    right: 8%;
    left: 8%;
    max-width: none;
    text-align: left;
  }

  .hero-caption h1 {
    font-size: clamp(1.5rem, 7vw, 2.4rem);
  }

  .hero-caption p,
  .hero-caption.text-end p {
    max-width: none;
    margin-left: 0;
    font-size: 0.9rem;
  }

  .about-shell {
    grid-template-columns: 1fr;
  }

  .about-story {    
    padding: 24px 18px 18px;
  }

  .title-ribbon span {
    width: 100%;
    padding: 4px 16px 6px;
    font-size: 1.75rem;
  }

  .about-story p,
  .services-card p,
  .pillar-card p {
    max-width: none;
    font-size: 0.95rem;
  }

  .about-image {
    height: 160px;
  }

  .about-pillars {
    margin-bottom: 0;
    padding: 22px 18px 26px;
    border-bottom-left-radius: 38px;
  }

  .pillar-card h3 {
    margin-left: 0;
    width: 100%;
    font-size: 1rem;
  }

  .pillar-card p {
    margin-left: 0;
  }

  .services-highlight {
    padding: 18px 16px 46px;
  }

  .services-card {
    max-width: none;
    padding: 24px 18px 22px;
    border-radius: 24px;
  }

  .services-card p {
  max-width: none;
  margin-bottom: 24px;
}

.services-card h2 {
    font-size: 1.8rem;
  }
}



#quem-somos, #nossos-valores, #servicos {
  scroll-margin-top: 118px;
}


#quem-somos, #nossos-valores, #servicos {
  scroll-margin-top: 118px;
}




















