﻿.breadcrumb {
    padding: 10px 20px;
    font-size: 0.9em;
    color: #666;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

    .breadcrumb a {
        color: #007BFF;
        text-decoration: none;
    }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

/* 標題樣式 */
h1 {
    text-align: center;
    color: #007BFF;
    margin: 80px 0 10px 0;
    font-size: 2.5em;
    font-weight: bold;
}

/* 內容容器樣式 */
.privacy-content {
  /*  max-width: 800px;*/
    margin: 0 auto 90px 0;
    padding: 80px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    /* 段落樣式 */
    .privacy-content p {
        margin-bottom: 20px;
        text-align: justify;
        font-size: 1em;
        color: #555;
    }

    /* 小標題樣式 */
    .privacy-content h2 {
        color: #007BFF;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.5em;
    }

    /* 列表樣式 */
    .privacy-content ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

        .privacy-content ul li {
            margin-bottom: 10px;
        }


    /* QR Code 圖片 */
    .privacy-content img {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin-bottom: 10px;
    }

/* LINE 按鈕 */

.line-content {
    /*  max-width: 800px;*/
    margin: 0 auto 90px 0;
    padding: 80px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.consult-btn {
    display: inline-block;
    background-color: #06c755;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 10px;
}

    .consult-btn:hover {
        background-color: #049e4d;
    }



/* ============================
   Swiss Editorial – Privacy
   xia8tw /privacy.css
   ============================ */
:root {
    --bg: #ffffff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e5e7eb;
    --accent: #e10600; /* 瑞士紅 */
    --maxw: 980px; /* 版心寬度 */
    --gap: 24px; /* 基礎間距 */
    --lead: 1.75; /* 行高 */
}

@media (max-width: 860px) {
    :root {
        --gap: 18px
    }
}

html, body {
    height: 100%
}

*, *::before, *::after {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font: 16px/var(--lead) "Inter","Noto Sans TC",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
}

/* 容器：讓內容置中且有左右內距 */
.page-wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: calc(var(--gap)*1.25) var(--gap);
}

/* 標題：瑞士風強字重、緊密字距 */
h1 {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.4px;
    line-height: 1.05;
    font-size: clamp(32px, 6vw, 56px);
}

/* 紅色眉標（可選） */
.eyebrow {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 8px;
}

/* 黑色粗線：瑞士編輯風分隔 */
.rule {
    height: 2px;
    background: #111;
    width: 64px;
    margin: 18px 0 26px;
}

/* 麵包屑 */
.breadcrumb {
    margin: 10px 0 16px;
    color: var(--muted);
    font-size: 13px;
}

    .breadcrumb a {
        color: inherit;
        text-decoration: none;
    }

        .breadcrumb a:hover {
            color: var(--ink);
            text-decoration: underline;
        }

/* 內容本體 */
.privacy-content {
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

    .privacy-content p {
        margin: 0 0 1.05em;
        max-width: 72ch;
    }

    .privacy-content ul {
        margin: 0.4em 0 1.1em 1.2em;
    }

    .privacy-content li {
        margin: 0.2em 0;
    }

    /* 章節標題 */
    .privacy-content h2 {
        margin: 1.6em 0 0.5em;
        font-size: 22px;
        line-height: 1.3;
    }

/* 提示框（可包重點文字） */
.note {
    padding: 12px 14px;
    border-left: 3px solid var(--accent);
    background: #fafafa;
    margin: 12px 0 18px;
}

/* 連結樣式 */
a.inline {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

    a.inline:hover {
        color: var(--accent);
    }

/* 底部 CTA（可選） */
.cta-row {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

/* 深色模式 */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0f0f0f;
        --ink: #f3f4f6;
        --muted: #9aa4b2;
        --line: #273444;
        --accent: #ff2a23;
    }

    .note {
        background: #141414
    }

    .rule {
        background: #f3f4f6
    }
}

/* ===== Swiss Override Patch: make it truly Swiss ===== */

/* 標題：左對齊、黑字、去掉舊的上外距 */
h1 {
    color: var(--ink) !important;
    text-align: left !important;
    margin: 0 !important; /* 取代舊的 80px */
}

/* 麵包屑：靠左、不用藍色 */
.breadcrumb {
    padding: 0 !important;
    text-align: left !important;
    color: var(--muted) !important;
}

    .breadcrumb a {
        color: inherit !important;
        text-decoration: none;
    }

        .breadcrumb a:hover {
            color: var(--ink) !important;
            text-decoration: underline;
        }

/* 內容容器：移除卡片外觀與過大的內距 */
.privacy-content {
    margin: 0 !important;
    padding: 0 !important; /* 只靠 .page-wrap 控制版心 */
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-top: 1px solid var(--line); /* Swiss 分隔線 */
    padding-top: 18px !important;
}

    /* 內文寬度與節奏（Swiss） */
    .privacy-content p {
        max-width: 72ch !important;
    }

    .privacy-content h2 {
        margin: 1.6em 0 0.5em !important;
        color: var(--ink) !important;
    }

/* 可選：加上眉標與黑線分隔（若你有放 .eyebrow / .rule） */
.eyebrow {
    display: block;
}

.rule {
    display: block;
}

