/* postapp2026personal.html — page-specific styles */
  /* 頂部導覽列 / period-bubble / 手機背景：共用樣式已移至 styles.css */
  .consent-panel {
    background:#fff;
    border-radius:36px;
    padding:36px 60px 48px;
    margin-bottom: 32px;
    min-height: 750px;
    position: relative;
  }
  .page { 
    display: block;
    min-height: 100vh; 
  }
  /* HOWHOW jump figure — anchored to the true viewport-left edge (full-bleed, like home),
     stays flush left even when .page is centered on screens wider than 1440px */
  .consent-howhow {
    position: absolute;
    left: -30px; 
    top: 70px; 
    width: 550px;
    z-index: 6;
    pointer-events: none;
  }
  .consent-howhow img { width: 100%; height: auto; display: block; }
  .consent-inner { margin-left: 500px; margin-right: 0; padding-top: 48px; }
  .consent-title {
    text-align:left;
    font-size:26px; font-weight:900;
    color: var(--purple-700);
    margin-bottom: 18px;
  }
  .consent-body { font-family: var(--font-sans); font-size: 15px; line-height: 1.85; color: #000; }
  .consent-body ul.bul { padding-left: 0; list-style: none; margin: 0; }
  .consent-body ul.bul > li { padding-left: 16px; position: relative; margin-bottom: 12px; }
  .consent-body ul.bul > li:first-child { padding-right: 0; }
  .consent-body ul.bul > li::before {
    content: ""; position: absolute;
    left: 0; top: 11px; width: 6px; height: 6px;
    background: #7D4E7C; border-radius: 999px;
  }
  .consent-body ol.sub { padding-left: 28px; margin: 4px 0; }
  .consent-body ol.sub > li { margin-bottom: 0; padding-left: 4px; }

  .consent-foot {
    display: flex; justify-content: flex-end; align-items: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .agree {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 17px; font-weight: 700;
    color: var(--ink-text);
    cursor: pointer;
    user-select: none;
    min-width: 0;
  }
  .agree input { display: none; }
  .checkbox-box {
    width: 22px; height: 22px;
    border: 2px solid var(--ink-text);
    border-radius: 4px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff;
  }
  .agree input:checked + .checkbox-box {
    background: var(--magenta-600); border-color: var(--magenta-600);
  }
  .agree input:checked + .checkbox-box::after {
    content: ""; display: block;
    width: 12px; height: 6px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg) translate(2px, -2px);
  }
  .submit {
    background: var(--magenta-600); color: #fff;
    font-family: var(--font-sans); font-weight: 900;
    font-size: 22px;
    padding: 12px 44px;
    border: none; border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(196,93,159,.30);
    transition: transform .12s, background .15s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .submit:hover { background: var(--magenta-700); }
  .submit:active { transform: scale(.96); }
  .submit.disabled { background: #c8cfcf; color: #fff; cursor: not-allowed; box-shadow: none; pointer-events: none; }

  /* ============================================================
     Mobile (≤ 1024px) RWD
     ============================================================ */
  @media (max-width: 1024px) {
    /* 手機頂部列 / 背景 / period-bubble：共用樣式已移至 styles.css */
    .page { display: block; padding: 12px 16px 0; position: relative; }

    .consent-panel {
      border-radius: 24px; padding: 22px 18px 0; margin: 16px 0 0;
      position: relative; min-height: 0; overflow: visible;
    }
    .consent-inner { margin-left: 0 !important; margin-right: 0 !important; }
    .consent-title { font-size: 18px; margin: 33px 0 16px; }
    .consent-body { font-size: 15px; }
    .consent-body ul.bul > li { font-size: 15px; word-break: break-word; overflow-wrap: anywhere; }

    .consent-foot {
      flex-direction: column; align-items: center; gap: 14px;
      margin-top: 24px;
    }
    .agree { font-size: 15px; }
    .submit { font-size: 20px; padding: 10px 48px; }

    /* HOWHOW jump figure: flush to left edge and bottom of panel */
    .consent-howhow {
      position: relative !important;
      left: auto; bottom: auto;
      width: 62%; max-width: 300px;
      margin: 18px auto 0 -18px;
      display: block;
    }
    .consent-howhow img { width: 100%; height: auto; display: block; }
  }
