
    .yk-history-tree-section {
      width: 100%;
      padding-top: 0 !important;
      padding-bottom: 72px !important;
    }

    .yk-history-tree-section .yk-section-head {
      display: flex !important;
      align-items: baseline !important;
      justify-content: space-between !important;
      gap: 36px !important;
      margin: 0 0 44px !important;
      padding: 0 !important;
    }

    .yk-history-tree-section .yk-section-head h2 {
      flex: 0 0 auto !important;
      margin: 0 !important;
      color: var(--yk-text, #14253d) !important;
      font-size: 42px !important;
      font-weight: 400 !important;
      line-height: 1.2 !important;
      white-space: nowrap !important;
    }

    .yk-history-tree-section .yk-section-head h2::before {
      content: "";
      display: inline-block;
      width: 4px;
      height: 34px;
      margin-right: 12px;
      vertical-align: -3px;
      border-radius: 2px;
      background: #E08015;
    }

    .yk-history-tree-section .yk-history-intro {
      flex: 1 1 auto;
      max-width: 430px;
      margin: 0 !important;
      color: var(--yk-muted, #52647a);
      font-size: 15px;
      line-height: 1.7;
    }

    .yk-history-tree {
      position: relative;
      width: 100%;
      margin: 0;
      padding: 12px 0;
      list-style: none;
    }

    .yk-history-tree::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      transform: translateX(-50%);
      background: #E08015;
      opacity: 0.55;
    }

    .yk-history-tree-item {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
      align-items: center;
      min-height: 150px;
      margin: 0;
    }

    .yk-history-tree-item::before {
      content: "";
      position: absolute;
      top: 50%;
      left: calc(50% - 38px);
      width: 76px;
      height: 1px;
      background: #E08015;
      opacity: 0.55;
    }

    .yk-history-tree-item:nth-child(even)::before {
      left: 50%;
    }

    .yk-history-tree-item:nth-child(odd) .yk-history-card {
      grid-column: 1;
      grid-row: 1;
      margin-right: 34px;
    }

    .yk-history-tree-item:nth-child(even) .yk-history-card {
      grid-column: 3;
      grid-row: 1;
      margin-left: 34px;
    }

    .yk-history-year {
      z-index: 2;
      grid-column: 2;
      grid-row: 1;
      justify-self: center;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 72px;
      height: 72px;
      border: 4px solid #E08015;
      border-radius: 50%;
      background: #fff;
      color: #E08015;
      font-size: 20px;
      font-weight: 700;
      line-height: 1;
      text-align: center;
      box-sizing: border-box;
    }

    .yk-history-card {
      position: relative;
      padding: 24px 26px;
      border: 1px solid var(--yk-line, #e2e2e2);
      border-top: 3px solid #E08015;
      border-radius: 8px;
      background: #fff;
      box-sizing: border-box;
    }

    .yk-history-card h3,
    .yk-history-strength-card h3 {
      margin: 0 0 9px;
      color: var(--yk-text, #14253d);
      font-size: 20px;
      font-weight: 500;
      line-height: 1.35;
    }

    .yk-history-card p,
    .yk-history-strength-card p,
    .yk-history-cta p {
      margin: 0;
      color: var(--yk-muted, #52647a);
      font-size: 15px;
      line-height: 1.75;
    }

    .yk-history-strengths {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 48px;
    }

    .yk-history-strength-card {
      padding: 26px 24px;
      border: 1px solid var(--yk-line, #e2e2e2);
      border-radius: 8px;
      background: #fff;
      box-sizing: border-box;
    }

    .yk-history-strength-card .yk-strength-num {
      display: block;
      margin-bottom: 14px;
      color: #E08015;
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
    }

    .yk-history-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      margin-top: 28px;
      padding: 30px 34px;
      border-radius: 8px;
      background: #fff5ea;
      border-left: 4px solid #E08015;
      box-sizing: border-box;
    }

    .yk-history-cta h3 {
      margin: 0 0 8px;
      color: var(--yk-text, #14253d);
      font-size: 24px;
      font-weight: 500;
      line-height: 1.35;
    }

    .yk-history-cta a {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 24px;
      border-radius: 4px;
      background: #E08015;
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      line-height: 1;
      text-decoration: none;
    }

    .yk-history-cta a:hover {
      background: #c86f10;
      color: #fff;
    }

    @media (max-width: 900px) {
      .yk-history-tree-section .yk-section-head {
        gap: 24px !important;
      }

      .yk-history-tree-section .yk-section-head h2 {
        font-size: 36px !important;
      }

      .yk-history-tree-section .yk-history-intro {
        max-width: 360px;
      }

      .yk-history-tree-item {
        grid-template-columns: minmax(0, 1fr) 82px minmax(0, 1fr);
      }

      .yk-history-card {
        padding: 20px;
      }

      .yk-history-tree-item:nth-child(odd) .yk-history-card {
        margin-right: 26px;
      }

      .yk-history-tree-item:nth-child(even) .yk-history-card {
        margin-left: 26px;
      }

      .yk-history-strengths {
        grid-template-columns: 1fr;
      }

      .yk-history-cta {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 640px) {
      .yk-history-tree-section {
        padding-bottom: 52px !important;
      }

      .yk-history-tree-section .yk-section-head {
        display: block !important;
        margin-bottom: 30px !important;
      }

      .yk-history-tree-section .yk-section-head h2 {
        font-size: 32px !important;
        white-space: normal !important;
      }

      .yk-history-tree-section .yk-history-intro {
        max-width: none;
        margin-top: 14px !important;
        font-size: 14px;
      }

      .yk-history-tree {
        padding: 0 0 0 20px;
      }

      .yk-history-tree::before {
        left: 20px;
        transform: none;
      }

      .yk-history-tree-item {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
        align-items: center;
        min-height: auto;
        margin-bottom: 22px;
      }

      .yk-history-tree-item:last-child {
        margin-bottom: 0;
      }

      .yk-history-tree-item::before,
      .yk-history-tree-item:nth-child(even)::before {
        top: 36px;
        left: 20px;
        width: 38px;
        transform: none;
      }

      .yk-history-year {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        width: 58px;
        height: 58px;
        border-width: 3px;
        font-size: 15px;
      }

      .yk-history-tree-item:nth-child(odd) .yk-history-card,
      .yk-history-tree-item:nth-child(even) .yk-history-card {
        grid-column: 2;
        grid-row: 1;
        margin: 0 0 0 18px;
      }

      .yk-history-card {
        padding: 18px;
      }

      .yk-history-card h3,
      .yk-history-strength-card h3 {
        font-size: 18px;
      }

      .yk-history-card p,
      .yk-history-strength-card p,
      .yk-history-cta p {
        font-size: 14px;
        line-height: 1.7;
      }

      .yk-history-strengths {
        margin-top: 34px;
      }

      .yk-history-strength-card {
        padding: 22px 18px;
      }

      .yk-history-cta {
        margin-top: 22px;
        padding: 24px 20px;
      }

      .yk-history-cta h3 {
        font-size: 21px;
      }

      .yk-history-cta a {
        width: 100%;
      }
    }
  