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

  .ynf-faq-container {
    max-width: 1180px;
    margin: 0 auto;
  }

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

  .ynf-faq-list {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
  }

  .ynf-faq-item {
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
  }

  .ynf-faq-item:last-child {
    border-bottom: none;
  }

  .ynf-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: 42px 1fr 24px;
    gap: 16px;
    align-items: center;
    padding: 18px 24px;
    box-sizing: border-box;
    transition: background 0.25s ease;
  }

  .ynf-faq-item summary::-webkit-details-marker {
    display: none;
  }

  .ynf-faq-item summary:hover {
    background: #fffafa;
  }

  .ynf-faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #d71920;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
    box-shadow: 0 5px 14px rgba(215, 25, 32, 0.22);
  }

  .ynf-faq-text strong {
    display: block;
    margin-bottom: 5px;
    color: #111827;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
  }

  .ynf-faq-text em {
    display: block;
    color: #374151;
    font-size: 14px;
    line-height: 1.45;
    font-style: normal;
  }

  .ynf-faq-arrow {
    width: 9px;
    height: 9px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    justify-self: center;
  }

  .ynf-faq-item[open] .ynf-faq-arrow {
    transform: rotate(45deg);
  }

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

    .ynf-faq-title {
      font-size: 24px;
      margin-bottom: 24px;
    }

    .ynf-faq-item summary {
      grid-template-columns: 34px 1fr 18px;
      gap: 12px;
      padding: 17px 15px;
    }

    .ynf-faq-icon {
      width: 28px;
      height: 28px;
      font-size: 17px;
    }

    .ynf-faq-text strong {
      font-size: 14px;
    }

    .ynf-faq-text em {
      font-size: 13px;
    }
  }
