<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet" />
.seo-benefits-wrapper {
  background-color: #121519;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  isolation: isolate;
  }

  .seo-benefits-section {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .seo-benefits-heading {
    text-align: center;
    color: white;
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 25px;
  }

  .seo-benefits-subtitle {
    text-align: center;
    max-width: 841px;
    color: white;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    line-height: 35px;
    font-weight: 400;
  }

  .seo-benefits-subtitle strong {
    font-weight: 700;
  }

  .seo-benefits-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    max-width: 1240px;
    width: 100%;
  }

  .seo-benefit-item {
    width: 295px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    flex-shrink: 0;
  }

  .seo-benefit-item img {
    width: 77px;
    height: 77px;
  }

  .seo-benefit-title {
    color: white;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 35px;
  }

  .seo-benefit-text {
    color: white;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 26px;
  }

.seo-benefits-deco-left,
.seo-benefits-deco-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none; /* dekoracje nie wpływają na interakcje */
  max-width: 100vw;
}

.seo-benefits-deco-left {
  left: 0;
  width: 227px;
}

.seo-benefits-deco-right {
  right: 0;
  width: 65px;
}

  @media (max-width: 1240px) {
    .seo-benefits-grid {
      flex-wrap: wrap;
    }
  }

  @media (max-width: 1024px) {
    .seo-benefits-deco-left,
    .seo-benefits-deco-right {
      display: none;
    }

    .seo-benefits-heading {
      font-size: 28px;
      line-height: 36px;
    }

    .seo-benefits-subtitle {
      font-size: 18px;
      line-height: 28px;
    }

    .seo-benefit-title {
      font-size: 20px;
      line-height: 30px;
    }

    .seo-benefit-text {
      font-size: 15px;
      line-height: 24px;
    }
  }

  @media (max-width: 600px) {
    .seo-benefits-heading {
      font-size: 24px;
      line-height: 32px;
    }

    .seo-benefits-subtitle {
      font-size: 16px;
      line-height: 24px;
    }

    .seo-benefit-title {
      font-size: 18px;
      line-height: 26px;
    }

    .seo-benefit-text {
      font-size: 14px;
      line-height: 22px;
    }
  }