.lf-form-page {
    --lf-accent: #d95e5e;
    --lf-accent-soft: #f7dede;
    --lf-dark: #1e1e1e;
    --lf-text: #555555;
    --lf-bg: #f8f8f8;
    --lf-white: #ffffff;
    --lf-border: #ececec;
    --lf-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

    font-family: Arial, Helvetica, sans-serif;
    color: var(--lf-dark);
    background: var(--lf-bg);
    line-height: 1.75;
   width: 100%;
  }

  .lf-form-page * {
    box-sizing: border-box;
	
  }
.lf-form-page {
  width: 100%;
}

.lf-section {
  width: 100%;
}
  .lf-form-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 50px 30px 70px;
}

  .lf-section {
    margin-bottom: 28px;
  }

  .lf-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f9f3f3 100%);
    border-radius: 18px;
    padding: 50px 40px;
    box-shadow: var(--lf-shadow);
    position: relative;
    overflow: hidden;
  }

  .lf-hero:before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(217,94,94,0.18) 0%, rgba(217,94,94,0) 70%);
    border-radius: 50%;
  }

  .lf-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lf-accent);
    margin-bottom: 14px;
  }

  .lf-hero h1 {
    margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.15;
    color: var(--lf-dark);
  }

  .lf-hero p {
    margin: 0;
    max-width: 900px;
    font-size: 18px;
    color: var(--lf-text);
  }

  .lf-hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .lf-btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
  }

  .lf-btn-primary {
    background: var(--lf-accent);
    color: #fff;
  }

  .lf-btn-primary:hover {
    background: #c94a4a;
    color: #fff;
  }

  .lf-btn-secondary {
    background: #fff;
    color: var(--lf-accent);
    border: 1px solid #efc5c5;
  }

  .lf-btn-secondary:hover {
    background: #fff5f5;
    color: var(--lf-accent);
  }

  .lf-intro {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: var(--lf-shadow);
  }

  .lf-section-title {
    text-align: center;
    margin-bottom: 34px;
  }

  .lf-section-title h2 {
    margin: 0 0 12px;
    font-size: 34px;
    color: var(--lf-dark);
  }

  .lf-section-title p {
    margin: 0 auto;
    max-width: 850px;
    color: var(--lf-text);
    font-size: 17px;
  }

  .lf-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .lf-card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .lf-card.card.shadow-md.element {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--lf-shadow);
    border: 1px solid var(--lf-border);
    height: 100%;
  }

  .lf-card .stamp.element {
    width: 54px;
    height: 54px;
    background: var(--lf-accent-soft);
    color: var(--lf-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 18px;
  }

  .lf-card h3,
  .lf-card h4 {
    margin: 0 0 14px;
    color: var(--lf-dark);
    font-size: 22px;
  }

  .lf-card p {
    color: var(--lf-text);
    margin: 0 0 14px;
  }

  .lf-card a {
    color: #f18181;
    font-weight: 700;
    text-decoration: none;
  }

  .lf-card a:hover {
    text-decoration: underline;
  }

  .lf-list {
    margin: 0;
    padding-left: 18px;
    color: var(--lf-text);
  }

  .lf-list li {
    margin-bottom: 8px;
  }

  .lf-feature-band {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: var(--lf-shadow);
    border: 1px solid var(--lf-border);
  }

  .lf-workflow {
    counter-reset: step;
    display: grid;
    gap: 16px;
  }

  .lf-step {
    background: #fff7f7;
    border: 1px solid #f1d5d5;
    border-radius: 12px;
    padding: 18px 18px 18px 64px;
    position: relative;
    color: var(--lf-text);
  }

  .lf-step:before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 32px;
    height: 32px;
    background: var(--lf-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
  }

  .lf-highlight {
    margin-top: 22px;
    background: #fff7f7;
    border-left: 5px solid var(--lf-accent);
    padding: 18px 18px;
    border-radius: 10px;
    color: var(--lf-text);
  }

  .lf-table-wrap {
    overflow-x: auto;
  }

  .lf-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--lf-border);
    min-width: 760px;
  }

  .lf-table th,
  .lf-table td {
    padding: 14px 14px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--lf-border);
  }

  .lf-table th {
    background: #faf1f1;
    color: var(--lf-dark);
    font-size: 14px;
    font-weight: 700;
  }

  .lf-table td {
    color: var(--lf-text);
  }

  .lf-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .lf-badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #f1d5d5;
    color: var(--lf-accent);
    font-size: 14px;
    font-weight: 700;
  }

  .lf-pricing-note {
    margin-top: 12px;
    font-size: 14px;
    color: #777;
  }

  .lf-cta {
    background: linear-gradient(135deg, #2a2a2a 0%, #111111 100%);
    color: #fff;
    border-radius: 18px;
    padding: 42px 28px;
    text-align: center;
    box-shadow: var(--lf-shadow);
  }

  .lf-cta h2 {
    margin: 0 0 12px;
    font-size: 34px;
    color: #fff;
  }

  .lf-cta p {
    max-width: 820px;
    margin: 0 auto 22px;
    color: rgba(255,255,255,0.88);
  }

  @media (max-width: 991px) {
    .lf-card-grid,
    .lf-card-grid-2 {
      grid-template-columns: 1fr;
    }

    .lf-hero h1 {
      font-size: 34px;
    }

    .lf-section-title h2 {
      font-size: 28px;
    }
  }

  @media (max-width: 640px) {
    .lf-form-container {
      padding: 24px 14px 50px;
    }

    .lf-hero,
    .lf-intro,
    .lf-feature-band,
    .lf-cta,
    .lf-card.card.shadow-md.element {
      padding: 24px 18px;
      border-radius: 14px;
    }

    .lf-hero h1 {
      font-size: 28px;
    }

    .lf-hero p {
      font-size: 16px;
    }

    .lf-hero-actions {
      flex-direction: column;
      align-items: flex-start;
    }
  }

#mw-element-1709223202559 {
    background-image: url(https://lilifolia.com/userfiles/media/default/39306500_1.jpg);
}

#mw-element-1709223554539 {
    background-image: url(https://lilifolia.com/userfiles/media/default/logistic-services2.png);
}

#mw-element-1709223554543 {
    background-image: url(https://lilifolia.com/userfiles/media/default/xKmXZ4Fv63w-1600.jpg);
}

#mw-element-1709223554548 {
    background-image: url(https://lilifolia.com/userfiles/media/default/pKeF6Tt3c08-1600.jpg);
}

#mw-element-1709903483200 {
    background-image: url(https://lilifolia.com/userfiles/media/default/_Zua2hyvTBk-1600.jpg);
}

#mw-element-1711366589478 {
    background-image: url(https://lilifolia.com/userfiles/media/default/landing-page-magento-1.jpg);
}

#mw-element-1711366589481 {
    background-image: url(https://lilifolia.com/userfiles/media/default/lp-wordpress.jpg);
}

#mw-element-1711374744325 {
    background-image: url(https://lilifolia.com/userfiles/media/default/seamless-integration-with-magento-my-pages.jpg);
}

#mw-element-1711374450232 {
    background-image: url(https://lilifolia.com/userfiles/media/default/debt-collection-logos.png);
    background-size: contain;
}

@media screen,
print {
    #mw-element-1708513663418 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/39306500_1.jpg);
    }

    #element_1619530413519 {
        text-align: center;
    }

    #mw-element-1708517485576 {
        max-width: 100%;
    }

    #mw-1708519891676 {
        max-width: 100%;
    }

    #mw-1708519891679 {
        max-width: 100%;
    }

    #mw-element-1708525825607 {
        max-width: 100%;
    }

    #mw-1708528336777 {
        max-width: 100%;
    }

    #mw-element-1708528336762 {
        max-width: 100%;
        width: 897px;
        text-align: center;
    }

    #mw-1708528336879 {
        max-width: 100%;
    }

    #mw-element-1708596470275 {
        background-color: #f0dada;
    }

    #mw-element-1708528336896 {
        max-width: none;
        width: 595.656px;
    }

    #mw-element-1708596470276 {
        color: rgb(232, 158, 158);
    }

    #mw-element-1708528336914 {
        background-image: none;
    }

    #mw-element-1708596470422 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/salj-denna-manaden.svg);
    }

    #mw-element-1708596470421 {
        max-width: 100%;
        width: 130px;
    }

    #mw-element-1708596470447 {
        max-width: none;
        width: 413.859px;
    }

    #mw-element-1708596470452 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/aktiva-saljare_1.png);
    }

    #mw-element-1708596470501 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/salj-per-kampanj.svg);
        max-width: 100%;
        width: 116px;
    }

    #mw-element-1708596470502 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/omsattning-per-manad.svg);
        max-width: 100%;
        width: 230px;
    }

    #mw-element-1708596470536 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/aktiva-saljare.png);
    }

    #mw-element-1708596470537 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/salj-denna-manaden.svg);
    }

    #mw-element-1708596470556 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/salj-per-kampanj.svg);
        max-width: 100%;
        width: 301px;
    }

    #mw-element-1708596470557 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/omsattning-per-manad.svg);
        max-width: 100%;
        width: 316px;
    }

    #mw-element-1708604980053 {
        text-align: center;
    }

    #mw-1708607721922 {
        max-width: 100%;
    }

    #mw-element-1708608254367 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/aktiva-saljare_1.png);
    }

    #mw-element-1708608254368 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/mnad-stat.png);
    }

    #mw-element-1708608254382 {
        max-width: 100%;
        width: 511px;
    }

    #mw-element-1708610429439 {
        font-weight: 700;
        color: #000000;
    }

    #mw-element-1708610429474 {
        color: #000000;
    }

    #mw-element-1708610554489 {
        color: #000000;
    }

    #mw-element-1708610554490 {
        color: #000000;
    }

    #mw-1708610429459 {
        max-width: 100%;
    }

    #mw-element-1708614001581 {
        max-width: 100%;
    }

    #mw-element-1708614532844 {
        max-width: 100%;
        min-height: 31px;
    }

    #mw-element-1708614670273 {
        text-align: center;
    }

    #mw-element-1708614001592 {
        text-align: center;
    }

    #mw-element-1708614001593 {
        text-align: left;
    }

    #mw-element-1708614001594 {
        text-align: left;
    }

    #mw-element-1708614001595 {
        text-align: left;
    }

    #mw-element-1708614001596 {
        text-align: left;
    }

    #mw-element-1708614001591 {
        max-width: 100%;
    }

    #mw-element-1708676868797 {
        text-align: left;
    }

    #mw-element-1708676868798 {
        text-align: left;
    }

    #mw-element-1708676868806 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/pKeF6Tt3c08-1600.jpg);
    }

    #mw-element-1708676871511 {
        margin-bottom: 40px;
    }

    #mw-element-1708681074487 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/_Zua2hyvTBk-1600.jpg);
    }

    #mw-element-1708679669584 {
        max-width: 100%;
    }

    #mw-element-1708614122992 {
        max-width: 100%;
        width: 1416px;
        min-height: 63px;
    }

    #mw-element-1709028372457 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/automative-marketingpng.png);
    }

    #mw-element-1709034733259 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/calendar.png);
    }

    #mw-element-1709034832284 {
        background-image: none;
    }

    #mw-element-1709034832314 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/calendar.png);
        background-size: contain;
    }

    #mw-element-1709034832326 {
        background-image: none;
    }

    #mw-element-1709034832327 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/segments.png);
        background-size: contain;
    }

    #mw-element-1709034832328 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/camagins.png);
        background-size: contain;
    }

    #mw-element-1709048484574 {
        background-image: none;
    }

    #mw-element-1709048484577 {
        background-image: none;
    }

    #mw-element-1709115070025 {
        max-width: none;
        width: 218.646px;
    }

    #mw-element-1709116510142 {
        font-weight: 300;
    }

    #mw-element-1709116510145 {
        color: rgb(255, 254, 254);
    }

    #mw-element-1709116511083 {
        color: rgb(255, 254, 254);
    }

    #mw-element-1709116511096 {
        padding-bottom: 3px;
    }

    #mw-element-1709116511095 {
        padding-bottom: px;
        margin-bottom: px;
    }

    #mw-element-1709116511138 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/zbILyELGOtk-1600.jpg);
    }

    #mw-element-1709116510153 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/zbILyELGOtk-1600.jpg);
    }

    #mw-element-1709034832329 {
        max-width: 100%;
    }

    #mw-element-1709125310318 {
        max-width: 100%;
        width: 917px;
        padding-right: 10px;
    }

    #mw-element-1709127018712 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/zbILyELGOtk-1600.jpg);
    }

    #mw-element-1709127746706 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/39306500.jpg);
    }

    #mw-element-1709127746709 {
        text-align: center;
    }

    #mw-element-1709129231279 {
        text-align: center;
    }

    #mw-element-1709129505034 {
        text-align: center;
    }

    #mw-element-1709129505037 {
        text-align: center;
    }

    #mw-element-1709129973155 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/39306500_1.jpg);
    }

    #mw-element-1709130002877 {
        text-align: center;
    }

    #mw-element-1709130002880 {
        text-align: center;
    }

    #mw-element-1709130237745 {
        text-align: center;
    }

    #mw-element-1709130237755 {
        text-align: center;
    }

    #mw-element-1709130364506 {
        text-align: center;
        max-width: 100%;
        width: 1636px;
        min-height: 76px;
    }

    #mw-element-1709130237777 {
        max-width: 100%;
        min-height: 31px;
        text-align: center;
    }

    #mw-element-1709129973190 {
        max-width: 100%;
    }

    #mw-element-1709130847508 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/pKeF6Tt3c08-1600.jpg);
    }

    #mw-element-1709130847509 {
        text-align: center;
    }

    #mw-element-1709131645453 {
        text-align: center;
    }

    #mw-element-1709130847511 {
        text-align: center;
    }

    #mw-element-1709131633134 {
        text-align: center;
    }

    #mw-element-1709131633141 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/_Zua2hyvTBk-1600.jpg);
        background-size: auto;
        text-align: left;
        background-repeat: no-repeat;
    }

    #mw-element-1709132557175 {
        text-align: center;
    }

    #mw-element-1709132557184 {
        max-width: 100%;
    }

    #mw-element-1709212021032 {
        text-align: center;
        max-width: 100%;
        width: 611px;
    }

    #mw-element-1709212021039 {
        font-weight: 700;
        text-align: left;
    }

    #mw-element-1709212021041 {
        text-align: center;
    }

    #mw-element-1709207888052 {
        max-width: none;
        width: 655.677px;
    }

    #mw-element-1709212021044 {
        text-align: center;
    }

    #mw-element-1709212021047 {
        padding-bottom: 40px;
    }

    #mw-element-1709212021055 {
        font-weight: 400;
    }

    #mw-element-1709212021077 {
        font-weight: 700;
    }

    #mw-element-1709212021081 {
        text-align: center;
    }

    #mw-element-1709212021053 {
        text-align: center;
    }

    #mw-element-1709211914515 {
        text-align: center;
    }

    #mw-element-1709212021060 {
        text-align: center;
    }

    #mw-element-1709212021079 {
        padding-bottom: 30px;
    }

    #mw-element-1709212021143 {
        text-align: center;
    }

    #mw-element-1709212021162 {
        text-align: center;
    }

    #mw-element-1709212021033 {
        max-width: 100%;
        width: 658px;
        height: 379px;
    }

    #mw-element-1709212021163 {
        max-width: 100%;
        width: 659px;
        height: 372px;
    }

    #mw-element-1709212021063 {
        max-width: 100%;
        width: 567px;
        min-height: 625px;
    }

    #mw-element-1709214312449 {
        text-align: center;
    }

    #mw-element-1709214312454 {
        text-align: center;
    }

    #mw-element-1709216669507 {
        text-align: center;
    }

    #mw-element-1709216966126 {
        text-align: center;
    }

    #mw-element-1709214311941 {
        max-width: 100%;
        text-align: center;
    }

    #mw-element-1709218248234 {
        max-width: 100%;
        width: 500px;
        min-height: 20px;
    }

    #mw-element-1709219665953 {
        max-width: 100%;
    }

    #mw-element-1709219984025 {
        max-width: 100%;
    }

    #mw-element-1709223202506 {
        text-align: center;
    }

    #mw-element-1709223202508 {
        text-align: center;
    }

    #mw-element-1709223203673 {
        text-align: center;
    }

    #mw-element-1709223203675 {
        text-align: center;
    }

    #mw-element-1709223203674 {
        text-align: center;
    }

    #mw-element-1709223203679 {
        text-align: center;
    }

    #mw-element-1709223203688 {
        text-align: center;
    }

    #mw-element-1709223203692 {
        text-align: center;
    }

    #mw-element-1709132557173 {
        text-align: center;
    }

    #mw-element-1709223554539 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/logistic-services2.png);
    }

    #mw-element-1709223554543 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/xKmXZ4Fv63w-1600.jpg);
    }

    #mw-element-1709223554548 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/pKeF6Tt3c08-1600.jpg);
    }

    #mw-element-1709223202559 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/39306500_1.jpg);
    }

    #mw-element-1709223202561 {
        max-width: 100%;
    }

    #mw-element-1709223203669 {
        text-align: center;
    }

    #mw-element-1709224549612 {
        background-image: url(https://demo.lilifolia.com/userfiles/media/default/_Zua2hyvTBk-1600.jpg);
    }

    #mw-element-1709225262803 {
        text-align: center;
    }

    #mw-element-1709223057491 {
        font-size: 25px;
        color: #ffffff;
        max-width: 100%;
        width: 442px;
        min-height: 31px;
        text-align: right;
    }

    #mw-element-1709282452436 {
        color: #e7a3a3;
    }

    #mw-element-1709283578603 {
        color: #f1eaea;
    }

    #mw-element-1709283579203 {
        color: #ffffff;
        font-size: 20px;
        background-color: #d95e5e;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 15px;
        padding-right: 15px;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    #mw-element-1709283100917 {
        color: #e79999;
    }

    #mw-element-1709284257976 {
        text-align: right;
    }

    #mw-element-1709284257979 {
        color: #f78888;
        font-weight: 700;
    }

    #mw-element-1709287158654 {
        max-width: 100%;
        text-align: right;
    }

    #mw-element-1709287122206 {
        color: #f19e9e;
        font-weight: 700;
    }

    #mw-element-1709287758665 {
        text-align: right;
    }

    #mw-element-1709287790633 {
        text-align: right;
        font-weight: 700;
    }

    #mw-element-1709287809054 {
        text-align: right;
    }

    #mw-element-1709287873014 {
        text-align: right;
    }

    #mw-element-1709288000279 {
        text-align: right;
    }

    #mw-element-1709288496339 {
        color: #f18181;
        font-weight: 700;
    }

    #mw-element-1709288780540 {
        text-align: center;
    }

    #mw-element-1709288833088 {
        text-align: right;
    }

    #mw-element-1709288833090 {
        text-align: right;
    }

    #mw-element-1709288833092 {
        text-align: right;
    }

    #mw-element-1709288833094 {
        text-align: right;
    }

    #mw-element-1709288833097 {
        text-align: right;
    }

    #mw-element-1709289414437 {
        text-align: left;
    }

    #mw-element-1709289404293 {
        font-weight: 700;
    }

    #mw-element-1709289404310 {
        font-weight: 700;
    }

    #mw-element-1709289674025 {
        font-weight: 700;
    }

    #mw-element-1709290198537 {
        font-weight: 700;
    }

    #mw-element-1709290198558 {
        font-weight: 700;
    }

    #mw-element-1709290198579 {
        font-weight: 700;
    }

    #mw-element-1709903483200 {
        background-image: url(https://lilifolia.com/userfiles/media/default/_Zua2hyvTBk-1600.jpg);
    }

    #mw-module-1711358322860 {
        background-image: url(https://lilifolia.com/userfiles/media/default/landing-page-magento-1.jpg);
    }

    #mw-element-1711358322865 {
        background-size: cover;
        background-image: none;
    }

    #mw-element-1711358322867 {
        background-repeat: no-repeat;
        background-size: auto;
    }

    #mw-element-1711358322869 {
        background-image: url(https://lilifolia.com/userfiles/media/default/landing-page-magento-1.jpg);
    }

    #mw-element-1711358322880 {
        background-image: url(https://lilifolia.com/userfiles/media/default/lp-wordpress.jpg);
    }

    #mw-element-1711358322247 {
        background-image: url(https://lilifolia.com/userfiles/media/default/landing-page-magento-1.jpg);
    }

    #mw-element-1711363008322 {
        background-image: url(https://lilifolia.com/userfiles/media/default/lp-wordpress.jpg);
    }

    #mw-element-1711364096116 {
        background-image: url(https://lilifolia.com/userfiles/media/default/landing-page-magento-1.jpg);
    }

    #mw-element-1711364159262 {
        background-image: url(https://lilifolia.com/userfiles/media/default/lp-wordpress.jpg);
    }

    #mw-element-1711366589478 {
        background-image: url(https://lilifolia.com/userfiles/media/default/landing-page-magento-1.jpg);
    }

    #mw-element-1711366589481 {
        background-image: url(https://lilifolia.com/userfiles/media/default/lp-wordpress.jpg);
    }

    #mw-element-1711366724596 {
        max-width: 100%;
    }

    #mw-element-1711374450232 {
        background-image: url(https://lilifolia.com/userfiles/media/default/debt-collection-logos.png);
        background-size: contain;
    }

    #mw-element-1711374450241 {
        background-image: url(https://lilifolia.com/userfiles/media/default/debt-collection-logos.png);
        background-size: contain;
    }

    #mw-element-1711374744325 {
        background-image: url(https://lilifolia.com/userfiles/media/default/seamless-integration-with-magento-my-pages.jpg);
    }

    #mw-element-1711374450281 {
        background-image: url(https://lilifolia.com/userfiles/media/default/seamless-integration-with-magento-my-pages.jpg);
    }

    #mw-element-1711383004126 {
        max-width: 100%;
        min-height: 31px;
    }

    #mw-element-1711383527153 {
        max-width: 100%;
        min-height: 31px;
    }

    #mw-element-1734711472696 {
        text-align: center;
    }

    #mw-element-1734711472697 {
        text-align: left;
    }

    #mw-element-1734711472698 {
        text-align: left;
    }

    #mw-element-1734711472699 {
        text-align: left;
    }

    #mw-element-1734711472700 {
        text-align: left;
    }

    #mw-element-1734711472701 {
        text-align: left;
    }

    #mw-element-1734711472702 {
        text-align: left;
    }

    #mw-1734711472703 {
        text-align: left;
    }

    #mw-1734711472705 {
        text-align: left;
    }

    #mw-1734711472706 {
        text-align: left;
    }

    #mw-1734711472707 {
        text-align: left;
    }
}