.help-menu-wrap {
      position: relative;
      width: min(100%, 260px);
    }

    .help-menu-button {
      width: 100%;
      min-height: 46px;
      padding: 10px 14px;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      background: #ffffff;
      color: #2b5f9e;
      border: 1px solid #9ccaff;
      font-weight: 700;
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      text-align: left;
    }

    .help-menu-button::after {
      content: "▾";
      font-size: 16px;
      line-height: 1;
    }

    .help-menu-wrap.open .help-menu-button::after {
      content: "▴";
    }

    .help-tabs {
      display: none;
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      width: 100%;
      z-index: 20;
      background: #fff;
      border: 1px solid #8ec5ff;
      border-radius: 14px;
      box-shadow: 0 10px 24px rgba(77, 163, 255, 0.14);
      overflow: hidden;
    }

    .help-menu-wrap.open .help-tabs {
      display: block;
    }

    .help-tab {
      width: 100%;
      min-height: 54px;
      padding: 13px 16px;
      white-space: normal;
      word-break: break-word;
      overflow-wrap: break-word;
      text-align: left;
      line-height: 1.25;
      display: flex;
      align-items: center;
      border: none;
      border-bottom: 1px solid #c7e2ff;
      cursor: pointer;
      background: #ffffff;
      color: #2b5f9e;
      font-weight: 650;
      font-size: 15px;
    }

    .help-tab:last-child {
      border-bottom: none;
    }

    .help-tab.active {
      background: #eaf5ff;
      color: #2b5f9e;
    }



    .help-menu-button:hover,
    .help-tab:hover {
      background: #eaf5ff;
    }

    .help-stage {
      position: relative;
      width: 100%;
      max-width: 820px;
      height: min(62vh, 520px);
      min-height: 320px;
      margin: 22px auto 0;
      background: #f8fbff;
      border: 1px solid #c7e2ff;
      border-radius: 18px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .help-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .help-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 60px;
      border: none;
      border-radius: 14px;
      background: rgba(77, 163, 255, 0.48);
      color: white;
      font-size: 34px;
      cursor: pointer;
      z-index: 2;
      transition: background 0.2s ease, opacity 0.2s ease;
    }

    .help-arrow:hover {
      background: rgba(77, 163, 255, 0.68);
    }

    .help-arrow:disabled {
      opacity: 0.22;
      cursor: default;
      pointer-events: none;
    }

    .help-arrow.left { left: 12px; }
    .help-arrow.right { right: 12px; }

    .help-stage.swipe-ready {
      touch-action: pan-y;
      user-select: none;
    }

    .page-number {
      position: absolute;
      right: 14px;
      bottom: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(43, 95, 158, 0.88);
      color: white;
      font-size: 13px;
      z-index: 3;
    }

    .help-description {
      max-width: 820px;
      margin: 16px auto 0;
      font-size: 16px;
	  line-height: 1.7;
	  font-weight: 500;
      color: #52677a;
      text-align: center;
    }
	.faq-panel {
	  max-width: 820px;
	  margin: 22px auto 0;
	}

	.faq-item {
	  border: 1px solid #8ec5ff;
	  border-radius: 12px;
	  background: #ffffff;
	  margin-bottom: 10px;
	  overflow: hidden;
	}

	.faq-question {
	  width: 100%;
	  border: none;
	  background: #f8fbff;
	  color: #2b5f9e;
	  font-size: 15px;
	  font-weight: 700;
	  text-align: left;
	  padding: 12px 14px;
	  cursor: pointer;

	  display: flex;
	  align-items: center;
	  gap: 10px;
	}

	.faq-plus {
	  width: 22px;
	  height: 22px;
	  border: 1px solid #4da3ff;
	  border-radius: 5px;
	  color: #2b82d9;
	  background: #eaf5ff;
	  font-weight: 900;
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  flex: 0 0 auto;
	}

	.faq-answer {
	  display: none;
	  padding: 0 16px 14px 46px;
	  color: #52677a;
	  line-height: 1.5;
	  font-size: 14px;
	}

	.faq-item.open .faq-answer {
	  display: block;
	}

	.faq-item.open .faq-plus {
	  background: #4da3ff;
	  color: #ffffff;
	}

	.help-view-hidden {
	  display: none !important;
	}
