.elementor-662 .elementor-element.elementor-element-a85af16{--display:flex;}body.elementor-page-662:not(.elementor-motion-effects-element-type-background), body.elementor-page-662 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-35c296f );}/* Start custom CSS for html, class: .elementor-element-e00346a */Certo, ecco tutto il CSS completo aggiornato con il blocco finale sistemato:

```css
.deco-services-page {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  padding: 45px 24px 60px;
}

.deco-services-hero {
  width: min(1180px, 100%);
  margin: 0 auto 34px;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.48), rgba(0,0,0,.12)),
    url("/wp-content/uploads/2026/05/immagini-decortech/insegne/insegne-01.jpg") center/cover;
  padding: 38px;
}

.deco-services-hero-text {
  max-width: 720px;
}

.deco-services-kicker {
  margin: 0 0 10px;
  color: #e11919;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.deco-services-hero h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.deco-services-hero p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.deco-services-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.deco-service-card {
  background: #111;
  border: 1px solid #222;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.deco-service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.deco-service-card div {
  padding: 18px;
}

.deco-service-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.deco-service-card p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.deco-services-cta {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  background: #e11919;
  color: #fff;
  padding: 34px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title button"
    "text button";
  gap: 10px 28px;
  align-items: center;
}

.deco-services-cta h2 {
  grid-area: title;
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 680px;
}

.deco-services-cta p {
  grid-area: text;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  max-width: 760px;
}

.deco-services-cta a {
  grid-area: button;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.deco-services-cta a:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 980px) {
  .deco-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deco-services-cta {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "text"
      "button";
  }

  .deco-services-cta a {
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .deco-services-page {
    padding: 24px 16px 42px;
  }

  .deco-services-hero {
    min-height: 430px;
    padding: 24px;
  }

  .deco-services-hero h1 {
    font-size: 34px;
  }

  .deco-services-grid {
    grid-template-columns: 1fr;
  }

  .deco-service-card img {
    height: 220px;
  }

  .deco-services-cta {
    padding: 24px;
  }

  .deco-services-cta h2 {
    font-size: 24px;
  }
}
```/* End custom CSS */