
    .ynf-find-section,
    .ynf-find-section * {
      box-sizing: border-box;
    }

    .ynf-find-section {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      background: #ffffff;
      padding: 54px 20px 62px;
      font-family: Arial, Helvetica, sans-serif;
      color: #151515;
    }

    .ynf-find-container {
      max-width: 1320px;
      margin: 0 auto;
      text-align: center;
    }

    .ynf-find-title {
      margin: 0 0 10px;
      font-size: 34px;
      line-height: 1.18;
      font-weight: 900;
      letter-spacing: .3px;
      text-transform: uppercase;
      color: #101010;
    }

    .ynf-find-title span {
      color: #E60012;
    }

    .ynf-find-subtitle {
      max-width: 720px;
      margin: 0 auto 32px;
      font-size: 16px;
      line-height: 1.55;
      color: #5a5a5a;
    }

    .ynf-find-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 26px;
      margin: 0 auto 28px;
    }

    .ynf-find-card {
      display: block;
      min-height: 245px;
      padding: 40px 28px 34px;
      background: #ffffff;
      border: 1px solid #e6e6e6;
      border-radius: 4px;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .035);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .ynf-find-card:hover {
      transform: translateY(-5px);
      border-color: rgba(230, 0, 18, .35);
      box-shadow: 0 14px 34px rgba(0, 0, 0, .09);
    }

    .ynf-find-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #E60012;
    }

    .ynf-find-icon svg {
      width: 72px;
      height: 72px;
      display: block;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .ynf-find-icon .fill-red {
      fill: currentColor;
      stroke: none;
    }

    .ynf-find-card h3 {
      margin: 0 0 12px;
      font-size: 17px;
      line-height: 1.3;
      font-weight: 900;
      letter-spacing: .2px;
      text-transform: uppercase;
      color: #171717;
    }

    .ynf-find-card p {
      margin: 0;
      font-size: 15px;
      line-height: 1.55;
      color: #565656;
    }

    .ynf-find-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 34px;
      border-radius: 4px;
      background: #E60012;
      color: #ffffff !important;
      font-size: 15px;
      font-weight: 900;
      letter-spacing: .2px;
      text-transform: uppercase;
      text-decoration: none;
      box-shadow: 0 9px 18px rgba(230, 0, 18, .22);
      transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
    }

    .ynf-find-cta:hover {
      background: #c90010;
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(230, 0, 18, .28);
    }

    .ynf-find-cta svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    @media (max-width: 1100px) {
      .ynf-find-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
      }
    }

    @media (max-width: 640px) {
      .ynf-find-section {
        padding: 42px 16px 48px;
      }

      .ynf-find-title {
        font-size: 25px;
      }

      .ynf-find-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
      }

      .ynf-find-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
      }

      .ynf-find-card {
        min-height: auto;
        padding: 30px 22px 28px;
      }

      .ynf-find-icon,
      .ynf-find-icon svg {
        width: 58px;
        height: 58px;
      }

      .ynf-find-icon {
        margin-bottom: 18px;
      }

      .ynf-find-card h3 {
        font-size: 15px;
      }

      .ynf-find-card p {
        font-size: 14px;
      }

      .ynf-find-cta {
        width: 100%;
        padding: 0 20px;
        font-size: 14px;
      }
    }
  