    /* 知識文章樣式 */

      .article-card-box {
        background: #ffffff !important;
        border: 1px solid #ebdccb !important;
        border-top: 5px solid #520472 !important;
        border-radius: 8px !important;
        box-shadow: 0 6px 20px rgba(82, 4, 114, 0.04) !important;
        padding: 40px 45px !important;
      }

      .article-content-wrapper {
        font-size: 18px !important;
        line-height: 1.85 !important;
        color: #333333 !important;
        text-align: justify !important;
        word-wrap: break-word !important;
      }

      /* 2. 標題層級 (H1, H2, H3, H4) 美化 */
      .article-content-wrapper h1,
      .article-content-wrapper h2,
      .article-content-wrapper h3,
      .article-content-wrapper h4 {
        color: #520472 !important;
        font-weight: 800 !important;
        margin-top: 32px !important;
        margin-bottom: 16px !important;
        padding-left: 12px !important;
        border-left: 5px solid #520472 !important;
        line-height: 1.4 !important;
      }
      .article-content-wrapper h1 { font-size: 24px !important; }
      .article-content-wrapper h2 { font-size: 22px !important; }
      .article-content-wrapper h3 { font-size: 20px !important; }
      .article-content-wrapper h4 { font-size: 18px !important; }

      /* 3. 段落、文字與超連結 (P, B, Strong, A) */
      .article-content-wrapper p {
        margin-bottom: 18px !important;
        color: #333333 !important;
      }
      .article-content-wrapper strong, 
      .article-content-wrapper b {
        color: #520472 !important;
        font-weight: bold !important;
      }

      /* 4. 清單標籤 (UL, OL, LI) 美化 */
      .article-content-wrapper ul,
      .article-content-wrapper ol {
        margin: 20px 0 25px 0 !important;
        padding-left: 25px !important;
        background: rgba(82, 4, 114, 0.02) !important;
        border: 1px solid #f0e6df !important;
        border-radius: 8px !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        padding-right: 20px !important;
      }
      .article-content-wrapper li {
        margin-bottom: 10px !important;
        line-height: 1.7 !important;
        color: #444444 !important;
      }
      .article-content-wrapper li:last-child {
        margin-bottom: 0 !important;
      }
      /* 自訂 UL 的漂亮的深紫點標記 */
      .article-content-wrapper ul li::marker {
        color: #520472 !important;
        font-size: 1.2em !important;
      }

      /* 5. 表格 (Table) 桌機 100% 撐滿 + 手機自動橫向滑動 */
      .article-content-wrapper table {
        width: 100% !important;
        max-width: 100% !important;
        margin: 25px 0 !important;
        border-collapse: separate !important;
        border-spacing: 0 !important;
        border: 1px solid #ebdccb !important;
        border-radius: 8px !important;
        overflow: hidden !important;
      }

      /* 手機螢幕下，自動切換為可橫向手勢滑動 */
      @media (max-width: 768px) {
        .article-content-wrapper table {
          display: block !important;
          overflow-x: auto !important;
          -webkit-overflow-scrolling: touch !important;
          white-space: nowrap !important;
        }
      }

      .article-content-wrapper table::-webkit-scrollbar {
        height: 6px;
      }
      .article-content-wrapper table::-webkit-scrollbar-thumb {
        background: #ebdccb;
        border-radius: 4px;
      }
      .article-content-wrapper table th {
        background: #f8f0fc !important;
        color: #520472 !important;
        font-weight: bold !important;
        padding: 12px 18px !important;
        border-bottom: 2px solid #ebdccb !important;
        text-align: center !important;
        font-size: 16.5px !important;
      }
      .article-content-wrapper table td {
        padding: 12px 18px !important;
        border-bottom: 1px solid #f0e6df !important;
        color: #444444 !important;
        text-align: center !important;
        font-size: 16px !important;
      }
      .article-content-wrapper table tr:nth-child(even) {
        background: #fffdf9 !important;
      }
      /* 6. 圖片 (Img) 響應式防爆頁與陰影 */
      .article-content-wrapper img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        margin: 20px auto !important;
        display: block !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
        border: 1px solid #ebdccb !important;
      }

      /* 7. 引言區塊 (Blockquote) 名言美化 */
      .article-content-wrapper blockquote {
        margin: 25px 0 !important;
        padding: 18px 22px !important;
        background: #fffdf9 !important;
        border-left: 5px solid #b8860b !important; /* 琥珀金左邊框 */
        border-radius: 0 8px 8px 0 !important;
        font-style: italic !important;
        color: #555555 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03) !important;
      }
      .article-content-wrapper blockquote p {
        margin-bottom: 0 !important;
      }

      /* 8. 分隔線 (Hr) 奢華金線 */
      .article-content-wrapper hr {
        border: 0 !important;
        height: 1px !important;
        background-image: linear-gradient(to right, rgba(235, 220, 203, 0), rgba(82, 4, 114, 0.4), rgba(235, 220, 203, 0)) !important;
        margin: 35px 0 !important;
      }

      /* 9. 手機端 (Mobile) RWD 自動微調 */
      @media (max-width: 768px) {
        .article-card-box {
          padding: 22px 16px !important;
        }
        .article-content-wrapper {
          font-size: 16.5px !important;
        }
        .article-content-wrapper table th,
        .article-content-wrapper table td {
          padding: 9px 12px !important;
          font-size: 14px !important;
        }
        .article-content-wrapper ul,
        .article-content-wrapper ol {
          padding-left: 18px !important;
        }
      }

     /* 導流外包覆容器 */
    .master-guide-box {
      background: #fffdf9 !important;
      border: 1px solid #ebdccb !important;
      border-radius: 8px !important;
      padding: 25px 20px !important;
      margin: 35px 0 15px 0 !important;
      text-align: center;
    }

    /* 引導文案標題與描述 */
    .master-guide-title {
      color: #520472 !important;
      font-size: 20px !important;
      font-weight: 800 !important;
      margin-bottom: 8px !important;
      letter-spacing: 0.5px;
    }
    .master-guide-desc {
      color: #555555 !important;
      font-size: 15.5px !important;
      line-height: 1.7 !important;
      margin-bottom: 20px !important;
    }

    /* 按鈕矩陣 Flexbox 排版 */
    .action-buttons-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      width: 100%;
      flex-wrap: wrap; /* 超過寬度自動流暢換行 */
    }

    /* 通用按鈕骨架 */
    .master-action-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 18px;
      border-radius: 50px;
      text-decoration: none !important;
      font-size: 15px;
      font-weight: bold;
      transition: all 0.25s ease-in-out;
      border: none;
      flex: 1 1 calc(20% - 12px); /* 電腦端平均分配，最小寬度彈性調整 */
      min-width: 210px;
      max-width: 260px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }

    /* 1. LINE 官方綠 */
    .btn-line-green {
      background-color: #06C755;
      color: #ffffff !important;
    }
    .btn-line-green:hover {
      background-color: #05b34c;
      box-shadow: 0 5px 18px rgba(6, 199, 85, 0.35);
      transform: translateY(-2px);
    }

    /* 2. 寶寶取名 (皇家金) */
    .btn-baby-gold {
      background: linear-gradient(135deg, #fbc100, #f5a623);
      color: #333333 !important;
    }
    .btn-baby-gold:hover {
      background: linear-gradient(135deg, #f5a623, #e69108);
      box-shadow: 0 5px 18px rgba(245, 166, 35, 0.35);
      transform: translateY(-2px);
    }

    /* 3. 成人改名 (朱砂紅) */
    .btn-change-red {
      background: linear-gradient(135deg, #cc0000 0%, #a30000 100%);
      color: #ffffff !important;
    }
    .btn-change-red:hover {
      background: linear-gradient(135deg, #e60000 0%, #b80000 100%);
      box-shadow: 0 5px 18px rgba(204, 0, 0, 0.35);
      transform: translateY(-2px);
    }

    /* 4. 公司命名 (琥珀棕金) */
    .btn-company-amber {
      background: linear-gradient(135deg, #b8860b 0%, #8b6508 100%);
      color: #ffffff !important;
    }
    .btn-company-amber:hover {
      background: linear-gradient(135deg, #d49b0d 0%, #a0740a 100%);
      box-shadow: 0 5px 18px rgba(184, 134, 11, 0.35);
      transform: translateY(-2px);
    }

    /* 5. 姓名學專區 (大師紫) */
    .btn-master-purple {
      background: linear-gradient(135deg, #520472 0%, #3a0351 100%);
      color: #ffffff !important;
    }
    .btn-master-purple:hover {
      background: linear-gradient(135deg, #680590 0%, #4a0468 100%);
      box-shadow: 0 5px 18px rgba(82, 4, 114, 0.35);
      transform: translateY(-2px);
    }

    /* 按鈕內頭像與文字對齊 */
    .btn-avatar-circle {
      width: 30px;
      height: 30px;
      background-size: cover;
      background-position: center;
      border-radius: 50%;
      border: 2px solid #ffffff;
      margin-right: 8px;
      display: inline-block;
      flex-shrink: 0;
    }
    .btn-text-content {
      display: flex;
      align-items: center;
      white-space: nowrap;
      letter-spacing: 0.3px;
    }
    .btn-text-content i {
      margin-right: 5px;
      font-size: 16px;
    }

  .nav-topic-btn {
    border: 1.5px solid #520472 !important;
    color: #520472 !important;
    background-color: #ffffff !important;
    font-size: 0.92rem;
    transition: all 0.25s ease-in-out !important;
  }
  .nav-topic-btn:hover {
    background: linear-gradient(135deg, #520472 0%, #3a0351 100%) !important;
    color: #ffffff !important;
    border-color: #3a0351 !important;
    box-shadow: 0 4px 12px rgba(82, 4, 114, 0.25) !important;
    transform: translateY(-2px);
  }
  .nav-topic-btn.active-page {
    background: linear-gradient(135deg, #520472 0%, #3a0351 100%) !important;
    color: #ffffff !important;
    border-color: #3a0351 !important;
    box-shadow: 0 2px 8px rgba(82, 4, 114, 0.2) !important;
  }

    /* RWD 行動裝置自動適配 (平板與手機) */
    @media (max-width: 992px) {
      .master-action-btn {
        flex: 1 1 calc(33.33% - 12px);
        max-width: 100%;
      }
    }
    @media (max-width: 768px) {
      .action-buttons-container {
        flex-direction: column;
        gap: 10px;
      }
      .master-action-btn {
        width: 100%;
        min-width: unset;
        max-width: 100%;
      }
    }    
   /* 其他文章樣式 */
    @media (max-width: 768px) {
      .other-article-link-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
      }
      .other-article-title-span {
        font-size: 16px !important;
        margin-bottom: 8px !important;
        display: block !important;
      }
      .other-article-badge-tag {
        font-size: 12.5px !important;
        padding: 4px 8px !important;
      }
    }    