.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;
    }
  }