
  .ynf-why-section {
    width: 100%;
    background: #ffffff;
    padding: 70px 20px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .ynf-why-container {
    max-width: 1280px;
    margin: 0 auto;
  }

  .ynf-why-title {
    margin: 0 0 34px;
    text-align: center;
    color: #111827;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
  }

  .ynf-why-content {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: stretch;
  }

  .ynf-why-gallery {
    display: grid;
    grid-template-rows: 0.85fr 1.15fr;
    gap: 8px;
    min-height: 520px;
  }

  .ynf-gallery-top,
  .ynf-gallery-large,
  .ynf-gallery-small {
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    box-sizing: border-box;
  }

  .ynf-gallery-top {
    border-radius: 10px 10px 0 0;
  }

  .ynf-gallery-bottom {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 8px;
  }

  .ynf-gallery-large {
    border-radius: 0 0 0 10px;
  }

  .ynf-gallery-small-wrap {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
  }

  .ynf-gallery-small:last-child {
    border-radius: 0 0 10px 0;
  }

  .ynf-why-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
  }

  .ynf-gallery-top:hover img,
  .ynf-gallery-large:hover img,
  .ynf-gallery-small:hover img {
    transform: scale(1.03);
  }

  .ynf-why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ynf-why-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 82px;
    padding: 16px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-sizing: border-box;
    transition: all 0.25s ease;
  }

  .ynf-why-item:first-child {
    border-radius: 10px 10px 0 0;
  }

  .ynf-why-item:last-of-type {
    border-radius: 0 0 10px 10px;
  }

  .ynf-why-item + .ynf-why-item {
    border-top: none;
  }

  .ynf-why-item:hover {
    background: #fffafa;
    border-color: #f3b3b6;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    z-index: 1;
  }

  .ynf-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #d71920;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(215, 25, 32, 0.22);
  }

  .ynf-why-icon svg {
    width: 30px;
    height: 30px;
    display: block;
  }

  .ynf-why-text h3 {
    margin: 0 0 5px;
    color: #111827;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
  }

  .ynf-why-text p {
    margin: 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.45;
  }

  .ynf-why-note {
    margin: 24px 0 0;
    padding: 24px 26px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #d71920;
    border-radius: 8px;
    color: #374151;
    box-sizing: border-box;
  }

  .ynf-why-note-title {
    margin: 0 0 14px;
    color: #111827;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
  }

  .ynf-why-note p {
    margin: 0 0 12px;
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
  }

  .ynf-why-note p:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 991px) {
    .ynf-why-section {
      padding: 60px 20px;
    }

    .ynf-why-content {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .ynf-why-gallery {
      min-height: 460px;
    }
  }

  @media (max-width: 575px) {
    .ynf-why-section {
      padding: 50px 15px;
    }

    .ynf-why-title {
      font-size: 26px;
      margin-bottom: 28px;
    }

    .ynf-why-gallery {
      min-height: auto;
      grid-template-rows: auto;
    }

    .ynf-gallery-top,
    .ynf-gallery-bottom,
    .ynf-gallery-small-wrap {
      display: block;
    }

    .ynf-gallery-top,
    .ynf-gallery-large,
    .ynf-gallery-small {
      height: 210px;
      margin-bottom: 8px;
      border-radius: 10px;
    }

    .ynf-why-item {
      grid-template-columns: 56px 1fr;
      gap: 14px;
      padding: 18px 16px;
    }

    .ynf-why-icon {
      width: 44px;
      height: 44px;
    }

    .ynf-why-icon svg {
      width: 26px;
      height: 26px;
    }

    .ynf-why-text h3 {
      font-size: 17px;
    }

    .ynf-why-text p {
      font-size: 14px;
    }

    .ynf-why-note {
      padding: 20px 18px;
    }

    .ynf-why-note-title {
      font-size: 18px;
    }

    .ynf-why-note p {
      font-size: 14px;
    }
  }
