
  html,
  body {
    overflow-x: hidden;
  }

  .ynf-about-strip-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f5f6f8;
    padding: 55px 20px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .ynf-about-strip-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    gap: 55px;
    align-items: center;
  }

  .ynf-about-text h2 {
    margin: 0 0 16px;
    color: #111827;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
  }

  .ynf-about-text p {
    margin: 0;
    color: #374151;
    font-size: 16px;
    line-height: 1.7;
  }

  .ynf-about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .ynf-about-feature {
    min-height: 86px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 13px;
    box-sizing: border-box;
    transition: all 0.25s ease;
  }

  .ynf-about-feature:hover {
    border-color: #d71920;
    background: #fffafa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  }

  .ynf-about-icon {
    width: 42px;
    height: 42px;
    color: #d71920;
    flex: 0 0 42px;
  }

  .ynf-about-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .ynf-about-feature-text {
    color: #111827;
    line-height: 1.25;
  }

  .ynf-about-feature-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
  }

  .ynf-about-feature-text span {
    display: block;
    margin-top: 3px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
  }

  @media (max-width: 991px) {
    .ynf-about-strip-container {
      grid-template-columns: 1fr;
      gap: 35px;
    }

    .ynf-about-features {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 575px) {
    .ynf-about-strip-section {
      padding: 45px 15px;
    }

    .ynf-about-text h2 {
      font-size: 24px;
    }

    .ynf-about-text p {
      font-size: 15px;
    }

    .ynf-about-features {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .ynf-about-feature {
      min-height: 78px;
    }
  }
