
    :root {
      --gb-green: #a2c801;
      --gb-blue: #0b5cab;
      --gb-navy: #014380;
      --gb-soft: #f4f8fb;
      --gb-border: #dbe7f0;
      --gb-text: #1f2937;
      
      --gb-white: #ffffff;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--gb-text);
      background: #fff;
      line-height: 1.6;
    }

    .container {
      width: min(1320px, 92%);
      margin: 0 auto;
    }

    .gb-hero {
         position: relative;
  overflow:hidden;
  padding:60px 0 60px;
  background-image: url("../src/photos/img-industry-focus/Comuni-facilities-img/Family-management-Hero.webp"), linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-blend-mode: overlay;
  margin: 10px;
  border-radius: 30px
    }

    .gb-hero-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 48px;
      align-items: center;
    }

    .gb-eyebrow {
      color: #9ff0bd;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: 14px;
      margin-bottom: 14px;
    }

    .gb-hero h1 {
      font-size: clamp(38px, 5vw, 62px);
      line-height: 1.08;
      margin: 0 0 22px;
      /* max-width: 760px; */
      color: #fff;
      /*max-width: 1320px; */
      margin-bottom: 20px;
    }

    .gb-hero p {
      font-size: 18px;
      color: #e8f2fa;
      max-width: 690px;
      margin-bottom: 30px;
    }

    .gb-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .gb-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 24px;
      border-radius: 999px;
      font-weight: 700;
      text-decoration: none;
      transition: .25s ease;
    }

    .gb-btn-primary {
      background: var(--gb-green);
      color: #fff;
    }

    .gb-btn-primary:hover {
      background: #0b7338;
      color: #fff;
    }

    .gb-btn-light {
      background: #fff;
      color: var(--gb-navy);
    }

    .gb-hero-card {
      background: rgba(255,255,255,.11);
      border: 1px solid rgba(255,255,255,.24);
      border-radius: 26px;
      padding: 30px;
      backdrop-filter: blur(8px);
    }

    .gb-hero-card h2 {
      font-size: 24px;
      margin: 0 0 18px;
      color: #fff;
    }

    .gb-hero-card ul {
      padding-left: 20px;
      margin: 0;
    }

    .gb-hero-card li {
      margin-bottom: 12px;
      color: #eef7ff;
    }

    .gb-section {
      padding: 80px 0;
    }

    .gb-section-soft {
      background: var(--gb-soft);
    }

    .gb-title {
      max-width: 820px;
      margin-bottom: 42px;
    }

    .gb-title h2 {
      font-size: clamp(30px, 4vw, 44px);
      color: var(--gb-navy);
      margin: 0 0 14px;
      line-height: 1.15;
    }

    .gb-title p {
      color: var(--gb-muted);
      font-size: 17px;
      margin: 0;
    }

    .gb-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .gb-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      align-items: center;
    }

    .gb-card {
      background: #fff;
      border: 1px solid var(--gb-border);
      border-radius: 22px;
      padding: 28px;
      box-shadow: 0 14px 36px rgba(7,33,63,.07);
    }

    .gb-card h3 {
      color: var(--gb-navy);
      margin: 0 0 10px;
      font-size: 22px;
    }

    .gb-card p {
      color: var(--gb-muted);
      margin: 0;
    }

    .gb-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--gb-green), var(--gb-blue));
      margin-bottom: 18px;
    }

    .gb-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .gb-list-item {
      background: #fff;
      border: 1px solid var(--gb-border);
      border-radius: 16px;
      padding: 18px 20px;
      font-weight: 700;
      color: var(--gb-navy);
    }

    .gb-image-box {
      background: #fff;
      border-radius: 28px;
      padding: 18px;
      box-shadow: 0 20px 45px rgba(7,33,63,.1);
    }

    .gb-image-box img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      display: block;
    }

    .gb-feature-band {
      background: linear-gradient(135deg, var(--gb-navy), var(--gb-blue));
      color: #fff;
      border-radius: 32px;
      padding: 48px;
    }

    .gb-feature-band h2 {
      font-size: clamp(30px, 4vw, 44px);
      margin: 0 0 16px;
      color: #fff;
    }

    .gb-feature-band p {
      color: #eaf4ff;
      max-width: 850px;
      font-size: 17px;
    }

    .gb-pill-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .gb-pill {
      background: rgba(255,255,255,.13);
      border: 1px solid rgba(255,255,255,.22);
      color: #fff;
      padding: 10px 16px;
      border-radius: 999px;
      font-weight: 700;
    }

    .gb-process {
      counter-reset: step;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .gb-step {
      background: #fff;
      border: 1px solid var(--gb-border);
      border-radius: 20px;
      padding: 24px;
      position: relative;
    }

    .gb-step::before {
      counter-increment: step;
      content: counter(step);
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--gb-green);
      color: #fff;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .gb-step h3 {
      color: var(--gb-navy);
      margin: 0 0 8px;
      font-size: 20px;
    }

    .gb-cta {
      background: linear-gradient(135deg, #0f8a45, #0b5cab);
      color: #fff;
      text-align: center;
      padding: 70px 24px;
      border-radius: 34px;
    }

    .gb-cta h2 {
      font-size: clamp(30px, 4vw, 46px);
      margin: 0 0 14px;
      color: #fff;
    }

    .gb-cta p {
      max-width: 760px;
      margin: 0 auto 28px;
      color: #eef7ff;
      font-size: 18px;
    }

    @media (max-width: 900px) {
      .gb-hero-grid,
      .gb-grid-2,
      .gb-grid-3,
      .gb-process {
        grid-template-columns: 1fr;
      }

      .gb-hero {
        padding: 80px 0 60px;
      }

      .gb-feature-band {
        padding: 32px;
      }
    }