.certifications-section {
  width: 100%;
  background: #f8f9fb;
  padding: 110px 20px 120px;
  font-family: "Lato", sans-serif;
}

.certifications-container {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.certifications-heading {
  margin: 0;
  color: #0056b8;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.certifications-text {
  margin: 22px auto 0;
  max-width: 840px;
  color: #5f6368;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

.certifications-image {
  display: block;
  margin: 40px auto 0;
  width: 100%;
  max-width: 140px;
  height: auto;
  object-fit: contain;
}

.certifications-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.certifications-logos .certifications-image {
  margin: 0;
}

@media (max-width: 900px) {
  .certifications-section {
    padding: 90px 18px 100px;
  }

  .certifications-heading {
    font-size: clamp(32px, 5vw, 42px);
  }

  .certifications-text {
    font-size: 16px;
    margin-top: 18px;
  }

  .certifications-image {
    margin-top: 34px;
    max-width: 120px;
  }
}

@media (max-width: 600px) {
  .certifications-section {
    padding: 72px 16px 84px;
  }

  .certifications-heading {
    font-size: 30px;
    line-height: 1.25;
  }

  .certifications-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .certifications-image {
    margin-top: 28px;
    max-width: 110px;
  }
}

@media (max-width: 480px) {
  .certifications-heading {
    font-size: 26px;
  }

  .certifications-text {
    font-size: 14px;
  }

  .certifications-image {
    max-width: 96px;
  }
}
.market-players {
  width: 100%;
  background: #f8f9fb;
  padding: 200px 20px 96px;
  font-family: "Lato", sans-serif;
}

.market-players__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #0b4fa3;
}

.market-players__heading {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.market-players__subheading {
  margin: 14px 0 48px;
  color: #6b7280;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.market-players__top-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
  flex-wrap: wrap;
}

.market-players__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 90px;
  max-width: 220px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: default;
}

a.market-players__logo {
  cursor: pointer;
}

.market-players__logo:hover {
  transform: scale(1.08);
  opacity: 0.85;
}

.market-players__logo img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: filter 0.2s ease;
}

.market-players__logo:hover img {
  filter: brightness(1.05);
}

.market-players__bottom-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
  margin: 48px auto 0;
  max-width: 1200px;
}

.market-players__logo--small {
  max-height: 50px;
  max-width: 120px;
}

.market-players__logo--small img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .market-players__heading {
    font-size: 32px;
  }

  .market-players__subheading {
    margin-bottom: 40px;
  }

  .market-players__top-row {
    gap: 48px;
  }

  .market-players__logo,
  .market-players__logo img {
    max-height: 80px;
  }

  .market-players__bottom-row {
    gap: 24px;
  }

  .market-players__logo--small,
  .market-players__logo--small img {
    max-height: 45px;
  }
}

@media (max-width: 768px) {
  .market-players {
    padding: 140px 16px 72px;
  }

  .market-players__heading {
    font-size: 28px;
  }

  .market-players__subheading {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .market-players__top-row {
    gap: 32px;
  }

  .market-players__logo,
  .market-players__logo img {
    max-height: 68px;
  }

  .market-players__bottom-row {
    gap: 20px;
    margin-top: 36px;
    flex-wrap: wrap;
  }

  .market-players__logo--small,
  .market-players__logo--small img {
    max-height: 40px;
    max-width: 95px;
  }
}

@media (max-width: 520px) {
  .market-players {
    padding: 120px 14px 64px;
  }

  .market-players__heading {
    font-size: 24px;
  }

  .market-players__subheading {
    font-size: 15px;
  }

  .market-players__top-row {
    gap: 24px;
  }

  .market-players__logo,
  .market-players__logo img {
    max-height: 58px;
  }

  .market-players__bottom-row {
    gap: 16px;
  }

  .market-players__logo--small,
  .market-players__logo--small img {
    max-height: 34px;
    max-width: 80px;
  }
}

.process-solutions-section {
  width: 100%;
  background: #f8f9fb;
  padding: 110px 24px 120px;
}

.process-solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  color: #0b4fa3;
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-solutions-heading {
  margin: 0;
  text-align: center;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.process-solutions-top-row {
  width: 100%;
  display: flex;
  margin-top: 52px;
  align-items: stretch;
  justify-content: center;
}

/* WRAPPER: um único card com duas metades */
.process-card-large-group {
  width: 100%;
  display: flex;
  border-radius: 34px;
  overflow: hidden;
  background: #e5e7eb;
}

/* Cada metade do card grande */
.process-card-large {
  position: relative;
  flex: 1 1 0;
  min-height: 340px;
  /* sem borda e sem shadow aqui, ficam no group */
  background: #e5e7eb;
}

/* BACKGROUND IMAGE */
.process-card-large__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY — sem blur e sem escurecimento */
.process-card-large__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 24px;
  padding: 32px;

  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* TITLE */
.process-card-large__title {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  max-width: 280px;
}

/* CTA — pílula que se adapta ao texto (largura fixa quebrava labels longos) */
.process-card-large__cta {
  width: max-content;
  min-width: 104px;
  height: 49px;
  padding: 0 24px;
  white-space: nowrap;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #0b4fa3;
  text-decoration: none;

  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  border: none;
  border-radius: 50px;

  cursor: pointer;

  margin-top: 0;

  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.process-card-large__cta:hover {
  opacity: 0.95;
}

/* SMALL CARDS */
.process-solutions-bottom-row {
  width: 100%;
  display: flex;
  gap: 24px;
  margin-top: 44px;
  justify-content: center;
  flex-wrap: wrap;
}

.process-card-small {
  flex: 1 1 0;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-card-small--clickable {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.process-card-small--clickable:hover {
  transform: translateY(-8px);
}

.process-card-small--clickable:hover .process-card-small__image-wrapper {
  box-shadow: 0 20px 40px rgba(16, 38, 89, 0.2);
}

.process-card-small--clickable:hover .process-card-small__caption {
  color: #0b4fa3;
}

.process-card-small__image-wrapper {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #e5e7eb;
  transition: box-shadow 0.3s ease;
}

.process-card-small__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.process-card-small__caption {
  margin-top: 18px;
  text-align: center;
  color: #374151;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

/* CTA BUTTON SECTION */
.process-solutions-cta {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #0b4fa3;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.process-solutions-cta:hover {
  opacity: 0.9;
}

.process-solutions-cta__circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0b4fa3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .process-solutions-heading {
    font-size: 40px;
  }

  .process-card-large {
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .process-solutions-top-row {
    margin-top: 44px;
  }

  .process-card-large-group {
    flex-direction: column;
  }

  .process-card-large {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .process-solutions-section {
    padding: 84px 16px 96px;
  }

  .process-solutions-heading {
    font-size: 32px;
    line-height: 1.25;
  }

  .process-card-large {
    min-height: 260px;
  }

  .process-solutions-bottom-row {
    gap: 18px;
    margin-top: 36px;
  }

  .process-card-small__image {
    height: 220px;
  }

  .process-solutions-cta {
    margin-top: 44px;
  }
}

@media (max-width: 640px) {
  .process-solutions-heading {
    font-size: 28px;
  }

  .process-card-large__overlay {
    padding: 28px 22px;
  }

  .process-card-large__title {
    font-size: 22px;
    max-width: 240px;
  }

  .process-solutions-top-row {
    margin-top: 32px;
  }

  .process-card-large-group {
    border-radius: 22px;
  }

  .process-solutions-bottom-row {
    flex-direction: column;
    gap: 16px;
  }

  .process-card-small {
    width: 100%;
    max-width: none;
  }

  .process-card-small__image {
    height: 240px;
  }

  .process-solutions-cta {
    justify-content: center;
  }
}
.sustainability-section {
  width: 100%;
  background: #f8f9fb;
  padding: 70px 20px;
}

.sustainability-section--about {
  background: transparent;
}

.sustainability-container {
  max-width: 1350px;
  margin: 0 auto;
  font-family: "Lato", sans-serif;
}

.sustainability-layout {
  display: flex;
  align-items: stretch;
  gap: 44px;
}

.sustainability-images {
  display: flex;
  gap: 18px;
  flex: 1.05;
  align-items: center;
}

.sustainability-image-wrapper {
  flex: 1;
  border-radius: 26px;
  overflow: hidden;
  background: #e5e7eb;
}

.sustainability-image--small {
  flex: 0.95;
  max-width: 320px;
}

.sustainability-image--large {
  flex: 1.25;
}

.sustainability-image--large img {
  max-height: 700px;
}

.sustainability-image-wrapper img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.sustainability-text {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  color: #1f2933;
}

.sustainability-heading {
  margin: 0;
  color: #0b4fa3;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.sustainability-description {
  margin: 8px 0 4px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.75;
  color: #374151;
}

.sustainability-list {
  margin: 10px 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sustainability-list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sustainability-list li {
  position: relative;
  padding-left: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
}

.sustainability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0b4fa3;
  transform: translateY(-50%);
}

.sustainability-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0b4fa3;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.sustainability-cta:hover {
  opacity: 0.9;
}

.sustainability-cta__circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0b4fa3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
}

.sustainability-cta__label {
  display: inline-block;
}

@media (max-width: 1024px) {
  .sustainability-layout {
    flex-direction: column;
    gap: 32px;
  }

  .sustainability-text {
    flex: 1;
  }

  .sustainability-images {
    width: 100%;
  }

  .sustainability-image--small {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .sustainability-section {
    padding: 76px 16px;
  }

  .sustainability-layout {
    gap: 28px;
  }

  .sustainability-images {
    flex-direction: column;
  }

  .sustainability-image-wrapper {
    width: 100%;
  }

  .sustainability-heading {
    font-size: 36px;
  }

  .sustainability-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .sustainability-section {
    padding: 64px 14px;
  }

  .sustainability-heading {
    font-size: 30px;
  }

  .sustainability-description {
    font-size: 15px;
    line-height: 1.55;
  }

  .sustainability-list li {
    font-size: 15px;
  }
}
.landing-hero.sustainability-section {
  padding: 44px 0;
}

.landing-hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px 0 4px;
}

.landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(360px, 1.5fr) minmax(380px, 1.35fr);
  align-items: center;
  gap: 44px;
}

.landing-hero__col {
  min-width: 0;
  display: flex;
}

.landing-hero__col--left {
  justify-content: flex-end;
}

.landing-hero__col--center {
  justify-content: center;
}

.landing-hero__col--right {
  justify-content: flex-start;
  align-self: stretch;
}

.landing-hero__image {
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: transparent;
}

.landing-hero__image--small {
  max-width: 430px;
}

.landing-hero__image--large {
  max-width: 520px;
}

.landing-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  background: #ffffff;
}

.landing-hero__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #1f2933;
  height: 100%;
  justify-content: space-between;
}

.landing-hero .sustainability-description {
  margin: 0;
  line-height: 1.6;
}

.landing-hero .sustainability-heading {
  font-size: 52px;
  line-height: 1.08;
}

.landing-hero .sustainability-list {
  margin: 0;
  margin-left: 16px;
}

.landing-hero .sustainability-list,
.landing-hero .sustainability-list ul {
  gap: 12px;
}

.landing-hero .sustainability-list li {
  line-height: 1.6;
}

.landing-hero .sustainability-list li::before {
  width: 14px;
  height: 14px;
}

.landing-hero .sustainability-cta {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .landing-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .landing-hero__col {
    justify-content: center;
  }

  .landing-hero__image--small,
  .landing-hero__image--large {
    max-width: 100%;
  }

  .landing-hero__text {
    max-width: 640px;
  }
}

@media (max-width: 640px) {
  .landing-hero__container {
    padding: 0 18px;
  }
}
.contact-expertise-section {
  width: 100%;
  background: #f8f9fb;
  padding: 96px 20px 220px;
  font-family: "Lato", sans-serif;
}

.contact-expertise-card {
  max-width: 1500px;
  margin: 0 auto;
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 420px;
  background: #ffffff;
}

.contact-expertise-image {
  flex: 1 1 50%;
}

.contact-expertise-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-expertise-content {
  flex: 1 1 50%;
  background: #0b4fa3;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 60px 110px;
}

.contact-expertise-card--cms-bg .contact-expertise-content {
  background-color: #0b4fa3;
  background-image:
    linear-gradient(90deg, rgba(11, 79, 163, 0.94), rgba(11, 79, 163, 0.82)),
    var(--contact-cta-bg-image);
  background-size: cover;
  background-position: center;
}

.contact-expertise-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(8px);
}

.contact-expertise-heading {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.contact-expertise-text {
  margin: 0;
  color: #e8eef7;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
}

.contact-expertise-button {
  position: absolute;
  right: 60px;
  bottom: 48px;
  margin-top: 0;
  background: #ffffff;
  color: #0b4fa3;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 14px 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.cta-contattaci {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.contact-expertise-button:hover {
  background: #f1f5f9;
}

.contact-expertise-button:active {
  transform: none;
}

@media (max-width: 1024px) {
  .contact-expertise-section {
    padding: 84px 18px 96px;
  }

  .contact-expertise-card {
    min-height: 380px;
  }

  .contact-expertise-content {
    padding: 40px 44px 96px;
  }

  .contact-expertise-heading {
    font-size: 36px;
  }
}

@media (max-width: 900px) {
  .contact-expertise-card {
    flex-direction: column;
    min-height: auto;
  }

  .contact-expertise-image {
    max-height: 360px;
  }

  .contact-expertise-content {
    padding: 36px 32px 90px;
  }

  .contact-expertise-button {
    right: 32px;
    bottom: 32px;
  }
}

@media (max-width: 640px) {
  .contact-expertise-section {
    padding: 72px 14px 84px;
  }

  .contact-expertise-heading {
    font-size: 32px;
    line-height: 1.18;
  }

  .contact-expertise-text {
    font-size: 16px;
  }

  .contact-expertise-button {
    padding: 12px 26px;
    right: 24px;
    bottom: 24px;
  }
}

@media (max-width: 480px) {
  .contact-expertise-card {
    border-radius: 28px;
  }

  .contact-expertise-heading {
    font-size: 28px;
  }

  .contact-expertise-text {
    font-size: 15px;
  }

  .contact-expertise-content {
    padding: 30px 24px 34px;
  }
}
.max-tifi-section {
  width: 100%;
  background: #f8f9fb;
  padding: 96px 20px 110px;
}

.max-tifi-container {
  max-width: 1220px;
  margin: 0 auto;
}

.max-tifi-card {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 38px;
  overflow: hidden;
  background-color: #0b111b;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.max-tifi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 22, 0.5);
  z-index: 0;
}

.max-tifi-content {
  position: relative;
  z-index: 1;
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 480px;
  color: #ffffff;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.max-tifi-heading {
  margin: 0;
  font-size: clamp(68px, 9vw, 110px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #f7f9fc;
  white-space: nowrap;
}

.max-tifi-text {
  margin: 6px 0 0;
  font-size: 18px;
  line-height: 1.6;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #f1f5f9;
}

.max-tifi-button {
  margin-top: 12px;
  align-self: flex-start;
  border: none;
  background: #ffffff;
  color: #0b4fa3;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.max-tifi-button:hover {
  background: #f0f3f8;
}

.max-tifi-button:active {
  transform: none;
}

@media (max-width: 1024px) {
  .max-tifi-section {
    padding: 82px 18px 96px;
  }

  .max-tifi-card {
    min-height: 380px;
  }

  .max-tifi-content {
    padding: 46px 52px;
    max-width: 480px;
  }

  .max-tifi-text {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .max-tifi-section {
    padding: 72px 16px 84px;
  }

  .max-tifi-card {
    min-height: 340px;
  }

  .max-tifi-content {
    padding: 36px 32px;
    gap: 16px;
    max-width: 100%;
  }

  .max-tifi-heading {
    font-size: clamp(52px, 12vw, 82px);
  }

  .max-tifi-text {
    font-size: 16px;
  }

  .max-tifi-button {
    padding: 12px 24px;
  }
}

@media (max-width: 540px) {
  .max-tifi-card {
    min-height: 320px;
  }

  .max-tifi-content {
    padding: 28px 24px;
  }

  .max-tifi-heading {
    font-size: clamp(44px, 14vw, 68px);
  }

  .max-tifi-text {
    font-size: 15px;
    line-height: 1.55;
  }
}

.certifications-heading,
.market-players__heading,
.process-solutions-heading,
.process-card-large__title,
.sustainability-heading,
.contact-expertise-heading {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
}
