
        :root {
            --jc-purple-dark: #4a1c6b;
            --jc-purple-main: #6b2d9b;
            --jc-purple-light: #9b59b6;
            --jc-purple-soft: #d4a5e8;
            --jc-purple-pale: #f3e5f9;
            --jc-gold-dark: #b8860b;
            --jc-gold-main: #d4af37;
            --jc-gold-light: #f4d03f;
            --jc-gold-soft: #fef3c7;
            --jc-bg-light: #faf8fc;
            --jc-bg-white: #ffffff;
            --jc-text-dark: #2d1b3d;
            --jc-text-gray: #5c4a6e;
            --jc-text-light: #8b7a9e;
            --jc-border-light: rgba(74,28,107,0.12);
            --jc-line-green: #06C755;
            --jc-gradient-purple: linear-gradient(135deg, #6b2d9b 0%, #9b59b6 100%);
            --jc-gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
            --jc-gradient-hero: linear-gradient(135deg, #4a1c6b 0%, #6b2d9b 50%, #2d1b3d 100%);
            --jc-shadow-md: 0 4px 12px rgba(74,28,107,0.15);
            --jc-shadow-lg: 0 10px 30px rgba(74,28,107,0.2);
            --jc-shadow-gold: 0 4px 20px rgba(212,175,55,0.3);
            --jc-font-main: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", sans-serif;
            --jc-radius-md: 16px;
            --jc-radius-lg: 24px;
            --jc-radius-full: 50px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--jc-font-main);
            line-height: 1.9;
            color: var(--jc-text-dark);
            background: var(--jc-bg-light);
        }

        /* ===== Hero 區塊 ===== */
        .jc-hero {
            background: var(--jc-gradient-hero);
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 120px 30px 80px;
            text-align: center;
        }

        .jc-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 50%),
                              radial-gradient(circle at 80% 20%, rgba(155,89,182,0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .jc-hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }

        .jc-hero-badge {
            display: inline-block;
            background: rgba(212, 175, 55, 0.2);
            color: var(--jc-gold-light);
            padding: 10px 25px;
            border-radius: var(--jc-radius-full);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            margin-bottom: 25px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .jc-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .jc-hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== 主要內容區 ===== */
        .jc-main {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* ===== 歡迎區塊 ===== */
        .jc-welcome {
            background: white;
            border-radius: var(--jc-radius-lg);
            padding: 50px;
            margin-top: -60px;
            position: relative;
            z-index: 10;
            box-shadow: var(--jc-shadow-lg);
            text-align: center;
            border-top: 4px solid var(--jc-gold-main);
        }

        .jc-welcome h2 {
            font-size: 1.8rem;
            color: var(--jc-purple-dark);
            margin-bottom: 20px;
        }

        .jc-welcome p {
            color: var(--jc-text-gray);
            font-size: 1.05rem;
            line-height: 2;
            max-width: 700px;
            margin: 0 auto 15px;
        }

        .jc-welcome-highlight {
            display: inline-block;
            background: var(--jc-purple-pale);
            color: var(--jc-purple-main);
            padding: 3px 12px;
            border-radius: 6px;
            font-weight: 600;
        }

        /* ===== 聯繫方式卡片區 ===== */
        .jc-contact-section {
            padding: 80px 0;
        }

        .jc-section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .jc-section-tag {
            display: inline-block;
            color: var(--jc-gold-dark);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            margin-bottom: 15px;
        }

        .jc-section-title {
            font-size: 2rem;
            color: var(--jc-purple-dark);
            position: relative;
            display: inline-block;
        }

        .jc-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--jc-gradient-gold);
            border-radius: 2px;
        }

        /* ===== 聯繫卡片網格 ===== */
        .jc-contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .jc-contact-card {
            background: white;
            border-radius: var(--jc-radius-lg);
            padding: 40px 35px;
            box-shadow: var(--jc-shadow-md);
            border: 1px solid var(--jc-border-light);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .jc-contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--jc-gradient-gold);
        }

        .jc-contact-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--jc-shadow-lg);
        }

        .jc-contact-card-icon {
            width: 70px;
            height: 70px;
            background: var(--jc-purple-pale);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .jc-contact-card-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--jc-purple-main);
            stroke-width: 2;
            fill: none;
        }

        .jc-contact-card-icon.line-icon {
            background: rgba(6, 199, 85, 0.1);
        }

        .jc-contact-card-icon.line-icon svg {
            fill: var(--jc-line-green);
            stroke: none;
        }

        .jc-contact-card h3 {
            font-size: 1.3rem;
            color: var(--jc-purple-dark);
            margin-bottom: 12px;
        }

        .jc-contact-card p {
            color: var(--jc-text-gray);
            font-size: 1rem;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .jc-contact-value {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--jc-purple-main);
            word-break: break-all;
        }

        .jc-contact-value a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .jc-contact-value a:hover {
            color: var(--jc-gold-dark);
        }

        .jc-contact-note {
            margin-top: 15px;
            padding: 12px 15px;
            background: var(--jc-gold-soft);
            border-radius: var(--jc-radius-md);
            font-size: 0.9rem;
            color: var(--jc-text-gray);
        }

        /* ===== 全寬卡片 ===== */
        .jc-contact-card.full-width {
            grid-column: span 2;
        }

        /* ===== 名片區塊 ===== */
        .jc-card-section {
            background: var(--jc-purple-pale);
            padding: 80px 30px;
        }

        .jc-card-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .jc-card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            align-items: center;
        }

        .jc-card-image {
            border-radius: var(--jc-radius-lg);
            overflow: hidden;
            box-shadow: var(--jc-shadow-lg);
            transition: transform 0.3s ease;
        }

        .jc-card-image:hover {
            transform: scale(1.02);
        }

        .jc-card-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .jc-card-info {
            padding: 20px;
        }

        .jc-card-info h3 {
            font-size: 1.6rem;
            color: var(--jc-purple-dark);
            margin-bottom: 20px;
        }

        .jc-card-info p {
            color: var(--jc-text-gray);
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 30px;
        }

        /* ===== 小編聯繫區 ===== */
        .jc-assistant-section {
            padding: 80px 30px;
            background: white;
        }

        .jc-assistant-container {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .jc-assistant-content h3 {
            font-size: 1.5rem;
            color: var(--jc-purple-dark);
            margin-bottom: 20px;
        }

        .jc-assistant-content p {
            color: var(--jc-text-gray);
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 25px;
        }

        .jc-qr-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .jc-qr-card {
            background: white;
            padding: 25px;
            border-radius: var(--jc-radius-lg);
            box-shadow: var(--jc-shadow-md);
            border: 2px solid var(--jc-border-light);
            text-align: center;
        }

        .jc-qr-card img {
            width: 200px;
            height: 200px;
            border-radius: var(--jc-radius-md);
        }

        .jc-qr-card p {
            margin-top: 15px;
            color: var(--jc-text-gray);
            font-size: 0.95rem;
        }

        .jc-assistant-card {
            background: white;
            padding: 30px;
            border-radius: var(--jc-radius-lg);
            box-shadow: var(--jc-shadow-md);
            border: 1px solid var(--jc-border-light);
            text-align: center;
        }

        .jc-assistant-card img {
            width: 100%;
            max-width: 350px;
            border-radius: var(--jc-radius-md);
            margin-bottom: 15px;
        }

        /* ===== 服務區域 ===== */
        .jc-service-area {
            background: var(--jc-gradient-hero);
            padding: 70px 30px;
            text-align: center;
            color: white;
        }

        .jc-service-area h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .jc-area-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .jc-area-tag {
            background: rgba(255, 255, 255, 0.15);
            padding: 12px 25px;
            border-radius: var(--jc-radius-full);
            font-size: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .jc-area-tag:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: var(--jc-gold-main);
        }

        .jc-service-area p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* ===== CTA 區塊 ===== */
        .jc-cta-section {
            padding: 80px 30px;
            text-align: center;
            background: var(--jc-bg-light);
        }

        .jc-cta-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .jc-cta-container h2 {
            font-size: 2rem;
            color: var(--jc-purple-dark);
            margin-bottom: 20px;
        }

        .jc-cta-container p {
            color: var(--jc-text-gray);
            font-size: 1.1rem;
            margin-bottom: 35px;
            line-height: 1.8;
        }

        .jc-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .jc-btn {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            padding: var(--space-4) var(--space-8);
            border-radius: var(--jc-radius-full);
            font-size: var(--text-base);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .jc-btn-primary {
            background: var(--jc-gradient-gold);
            color: var(--jc-purple-dark);
            box-shadow: var(--jc-shadow-gold);
        }

        .jc-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(212,175,55,0.5);
        }

        .jc-btn-line {
            background: var(--jc-line-green);
            color: white;
            box-shadow: 0 4px 20px rgba(6,199,85,0.3);
        }

        .jc-btn-line:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(6,199,85,0.4);
        }

        .jc-btn svg {
            width: 20px;
            height: 20px;
        }

        /* ===== FAQ 區塊 ===== */
        .jc-faq-section {
            background: var(--jc-purple-pale);
            padding: 80px 30px;
        }

        .jc-faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .jc-faq-list {
            margin-top: 40px;
        }

        .jc-faq-item {
            background: white;
            border-radius: var(--jc-radius-md);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--jc-shadow-md);
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .jc-faq-item:hover,
        .jc-faq-item.active {
            border-color: var(--jc-gold-main);
        }

        .jc-faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--jc-purple-dark);
            transition: background 0.3s ease;
        }

        .jc-faq-question:hover {
            background: var(--jc-purple-pale);
        }

        .jc-faq-question::after {
            content: '+';
            font-size: 1.5em;
            color: var(--jc-gold-dark);
            transition: transform 0.3s ease;
            font-weight: 400;
        }

        .jc-faq-item.active .jc-faq-question::after {
            transform: rotate(45deg);
        }

        .jc-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .jc-faq-item.active .jc-faq-answer {
            max-height: 300px;
        }

        .jc-faq-answer-content {
            padding: 0 30px 25px;
            color: var(--jc-text-gray);
            line-height: 1.8;
        }

        /* ===== Footer ===== */
        .footer {
            background: var(--jc-gradient-hero);
            color: white;
            padding: 60px 30px 30px;
        }

        .footer .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .footer-brand p {
            opacity: 0.85;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer-section h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--jc-gold-light);
        }

        .footer-section a {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--jc-gold-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 25px;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 8px;
        }

        /* ===== 浮動 LINE 按鈕 ===== */
        .jc-floating-line {
            position: fixed;
            bottom: 35px;
            right: 35px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 28px;
            background: var(--jc-line-green);
            color: white;
            text-decoration: none;
            border-radius: var(--jc-radius-full);
            box-shadow: 0 12px 45px rgba(6,199,85,0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            font-weight: 600;
        }

        .jc-floating-line:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 55px rgba(6,199,85,0.5);
        }

        .jc-floating-line svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        /* ===== 響應式設計 ===== */
        @media (max-width: 992px) {
            .jc-hero h1 {
                font-size: 2.4rem;
            }

            .jc-contact-grid {
                grid-template-columns: 1fr;
            }

            .jc-contact-card.full-width {
                grid-column: span 1;
            }

            .jc-card-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .jc-assistant-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .jc-hero {
                padding: 100px 20px 60px;
                min-height: 50vh;
            }

            .jc-hero h1 {
                font-size: 2rem;
            }

            .jc-hero-subtitle {
                font-size: 1.05rem;
            }

            .jc-welcome {
                padding: 35px 25px;
                margin-top: -40px;
            }

            .jc-welcome h2 {
                font-size: 1.5rem;
            }

            .jc-contact-section,
            .jc-assistant-section,
            .jc-cta-section,
            .jc-faq-section {
                padding: 60px 20px;
            }

            .jc-card-section {
                padding: 60px 20px;
            }

            .jc-contact-card {
                padding: 30px 25px;
            }

            .jc-contact-value {
                font-size: 1.2rem;
            }

            .jc-section-title {
                font-size: 1.6rem;
            }

            .jc-cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .jc-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .jc-floating-line {
                bottom: 20px;
                right: 20px;
                padding: 14px 22px;
                font-size: 0.95rem;
            }

            .jc-qr-card img {
                width: 150px;
                height: 150px;
            }
        }