﻿        @charset "utf-8";


        /* 移動設備導航樣式 - 添加動畫 */
        .mobile-menu-container {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #e0a502;
            z-index: 1001;
            max-height: 80vh;
            overflow-y: auto;
            transform: translateY(-10px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .mobile-menu-container.active {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu {
            background-color: #e0a502;
            transform: translateX(-10px);
            transition: transform 0.3s ease 0.1s;
        }

        .mobile-menu-container.active .mobile-menu {
            transform: translateX(0);
        }

        .mobile-menu ul {
            list-style: none;
        }

        .mobile-menu ul li {
            border-bottom: 2px solid #efcf79;
            position: relative;
            overflow: hidden;
        }

        /* 普通選單項背景色 */
        .mobile-menu ul li:not(.has-submenu) {
            background-color: #6A0DAD;
        }

        /* 有下拉選單的選單項背景色 */
        .mobile-menu ul li.has-submenu {
            background-color: #8B2DC9;
        }

        .mobile-menu ul li a {
            color: #fff;
            display: block;
            font-size: 20px;
            padding: 18px 20px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mobile-menu ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .mobile-menu ul li a:hover::before {
            left: 100%;
        }

        .mobile-menu ul li a:hover, .mobile-menu ul li a:active {
            background-color: #fab802;
            padding-left: 25px;
        }

        /* 加大下拉圖標 - 添加動畫 */
        .mobile-menu ul li i {
            position: absolute;
            top: 50%;
            right: 30px;
            transform: translateY(-50%);
            display: block;
            width: 24px;
            height: 24px;
            overflow: hidden;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: contain;
            font-size: 22px;
            font-weight: bold;
            text-align: center;
            line-height: 24px;
            color: white;
            transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
        }

        .mobile-menu ul li i.touch-arrow-down::before {
            content: "+";
            display: block;
            transition: transform 0.4s ease;
        }

        .mobile-menu ul li i.touch-arrow-up::before {
            content: "-";
            display: block;
            transform: rotate(180deg);
        }

        .mobile-menu ul li a:hover i {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-50%) scale(1.1);
        }

        /* 子選單動畫效果 */
        .mobile-menu ul ul {
            display: none;
            margin: 0;
            padding: 0;
            background-color: #7A3DB8;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease;
        }

        .mobile-menu ul ul.active {
            display: block;
            max-height: 500px;
            padding: 10px 0;
        }

        .mobile-menu ul ul li {
            border-bottom: none;
            margin: 0;
            background-color: #7A3DB8;
            transform: translateX(-20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .mobile-menu ul ul.active li {
            transform: translateX(0);
            opacity: 1;
        }

        /* 子選單項目的延遲動畫 */
        .mobile-menu ul ul li:nth-child(1) { transition-delay: 0.05s; }
        .mobile-menu ul ul li:nth-child(2) { transition-delay: 0.1s; }
        .mobile-menu ul ul li:nth-child(3) { transition-delay: 0.15s; }
        .mobile-menu ul ul li:nth-child(4) { transition-delay: 0.2s; }
        .mobile-menu ul ul li:nth-child(5) { transition-delay: 0.25s; }
        .mobile-menu ul ul li:nth-child(6) { transition-delay: 0.3s; }
        .mobile-menu ul ul li:nth-child(7) { transition-delay: 0.35s; }
        .mobile-menu ul ul li:nth-child(8) { transition-delay: 0.4s; }

        .mobile-menu ul ul li a {
            padding: 16px 20px 16px 40px;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .mobile-menu ul ul li a:hover {
            background-color: #9B4DDB;
            padding-left: 45px;
        }

        /* ===== 大圖檔區域樣式 ===== */
        .header-banner {
            width: 100%;
            position: relative;
            overflow: hidden;
            background-color: #f8f9fa; /* 預設背景色 */
        }

        .header-banner img {
            width: 100%;
            height: auto;
            display: block;
            transition: opacity 0.5s ease;
        }

        /* 桌面版圖片 (預設顯示) */
        .header-banner .desktop-img {
            display: block;
        }

        /* 平板版圖片 (預設隱藏) */
        .header-banner .tablet-img {
            display: none;
        }

        /* 手機版圖片 (預設隱藏) */
        .header-banner .mobile-img {
            display: none;
        }

        /* 響應式圖片切換 */
        @media (max-width: 992px) and (min-width: 768px) {
            .header-banner .desktop-img {
                display: none;
            }
            
            .header-banner .tablet-img {
                display: block;
            }
        }

        @media (max-width: 767px) {
            .header-banner .desktop-img {
                display: none;
            }
            
            .header-banner .mobile-img {
                display: block;
            }
        }

        /* 圖片載入前的佔位空間 */
        .header-banner.placeholder {
            min-height: 300px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .header-banner.placeholder::before {
            content: "載入中...";
            color: #666;
            font-size: 1.2rem;
        }

        /* 圖片載入失敗的備用樣式 */
        .header-banner.error {
            min-height: 200px;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
        }

        /* 可選：添加圖片說明文字樣式 */
        /* 圖片說明文字樣式 */
        .banner-caption {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            padding: 15px 20px;
            background: rgba(0, 0, 0, 0.6);
            font-size: 1.1rem;
            font-weight: 500;
            display: block; /* 預設顯示 */
        }

        .banner-caption p {
            margin: 5px 0 0 0;
            font-size: 1rem;
            line-height: 1.4;
        }

        /* 響應式文字調整 */
        @media (max-width: 768px) {
            .banner-caption {
                display: none; /* 小於等於768px時隱藏 */
                /* 如果需要保留其他樣式，可以註解掉下面這行 */
                /* bottom: 15px;
                padding: 10px 15px;
                font-size: 1rem; */
            }
            
            .banner-caption p {
                font-size: 0.9rem;
            }
        }

        /* ===== 標題層級樣式 ===== */
        /* H1 標題 */
        .content-text h1,
        h1 {
            color: #800080;
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: 1px;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            margin-top: 30px;
            margin-bottom: 20px;
        }

        /* ===== 主内容區域樣式 ===== */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1551524164-6ca5f5f77e75?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            color: white;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .btn {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 14px 35px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }

        .section {
            padding: 90px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 2.2rem;
            color: #2c3e50;
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #e74c3c;
            margin: 15px auto 0;
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.5s ease;
        }

        .section-title:hover:after {
            transform: scaleX(1);
        }

        /* ===== 頁尾導航列樣式 ===== */
        .footer-nav {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 60px 0 25px;
            margin-top: auto;
        }

        .footer-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* 修改为三列布局 */
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: #e74c3c;
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 4px;
            background: #e74c3c;
            border-radius: 2px;
        }

        /* 原始CSS中的圖示樣式 - 修改為圓角矩形 */
        .footer-column h3 .icon {
            font-size: 1.6rem;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(231, 76, 60, 0.1);
            border-radius: 10px; /* 改為圓角矩形 */
            border: 2px solid rgba(231, 76, 60, 0.3);
            overflow: hidden; /* 新增：確保圖片不會超出圓角邊界 */
        }

        /* 新增：圖示內的圖片樣式 */
        .footer-column h3 .icon img {
            width: 30px;
            height: 30px;
            object-fit: contain;
            border-radius: 6px; /* 圖片內部也使用圓角 */
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            padding: 8px 0;
            font-size: 1rem;
        }

        /* 大箭頭圖標 */
        .footer-links a::before {
            content: '➤';
            margin-right: 15px;
            color: #e74c3c;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(231, 76, 60, 0.1);
            border-radius: 50%;
            border: 1px solid rgba(231, 76, 60, 0.3);
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(10px);
        }

        .footer-links a:hover::before {
            transform: scale(1.3);
            color: #ff6b6b;
            background: rgba(255, 107, 107, 0.2);
            border-color: rgba(255, 107, 107, 0.5);
        }

        /* 聯絡資訊大圖標 */
        .contact-info {
            margin-top: 20px;
            background-color: #993366; /* #f8f4ff 淡紫色 */
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #e8e0ff; /* 淡紫色邊框 */
            box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 輕微陰影 */
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: #2c3e50; /* 深色文字在淡紫背景上更清晰 */
            padding: 10px 0;
            border-bottom: 1px solid rgba(232, 224, 255, 0.5); /* 半透明淡紫分隔線 */
        }



/* 聯絡資訊大圖標 - 內部 */

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.0rem;
    padding: 1.5rem;
    background: #CCFFCC;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

/* 上 - 聯絡資訊大圖標 - 內部 */




        .contact-item:last-child {
            margin-bottom: 0;
            border-bottom: none;
        }

        .contact-item .icon {
            margin-right: 15px;
            color: #e74c3c;
            min-width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(231, 76, 60, 0.1);
            border-radius: 8px;
            font-size: 1.4rem;
            border: 2px solid rgba(231, 76, 60, 0.2);
        }

        .contact-item:hover .icon {
            background: rgba(231, 76, 60, 0.2);
            transform: scale(1.1);
            border-color: rgba(231, 76, 60, 0.4);
        }

        /* 大社交媒體圖標 */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size: 1.4rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link:hover {
            background: #e74c3c;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.5);
            border-color: rgba(231, 76, 60, 0.5);
        }

        .footer-bottom {
            border-top: 2px solid rgba(255, 255, 255, 0.15);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .copyright {
            color: #95a5a6;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .copyright::before {
            content: '©';
            font-size: 1.2rem;
            color: #e74c3c;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .footer-bottom-links a {
            color: #95a5a6;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-bottom-links a::before {
            content: '•';
            color: #e74c3c;
            font-size: 1.2rem;
        }

        .footer-bottom-links a:hover {
            color: #e74c3c;
            transform: translateY(-2px);
        }

        /* 回到頂部大按鈕 */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background: #e74c3c;
            color: white;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: #c0392b;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(231, 76, 60, 0.6);
        }

        /* ===== 頁尾底部工具列樣式 ===== */
        .footer-toolbar {
            background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
            color: white;
            padding: 12px 0;
            border-top: 3px solid rgba(231, 76, 60, 0.3);
        }

        .footer-toolbar-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .footer-toolbar-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 30px;
            align-items: center;
        }

        .footer-info {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px; /* 減少間距 */
            color: #bdc3c7;
            font-size: 0.95rem;
        }

        .footer-info a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .footer-info a:hover {
            color: #e74c3c;
            transform: translateY(-2px);
        }

        .footer-info .separator {
            color: #7f8c8d;
            margin: 0 3px; /* 減少分隔符間距 */
        }

        /* 日期和訪量樣式 - 減少間距 */
        .update-info {
            display: flex;
            align-items: center;
            gap: 5px; /* 減少間距 */
        }

        .visit-count {
            display: flex;
            align-items: center;
            gap: 5px; /* 減少間距 */
        }

        /* ===== 行動裝置工具列樣式 ===== */


        .mobile-toolbar-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }

        .mobile-toolbar-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            align-items: center;
        }

        .mobile-tool-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            padding: 5px 3px;
            border-radius: 6px;
        }

        .mobile-tool-item:hover {
            background-color: rgba(231, 76, 60, 0.2);
            transform: translateY(-2px);
        }

        .mobile-tool-icon {
            width: 36px;
            height: 36px;
            margin-bottom: 3px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
        }

        .mobile-tool-item:hover .mobile-tool-icon {
            transform: scale(1.1);
        }

        .mobile-tool-label {
            font-size: 0.7rem;
            text-align: center;
            font-weight: 500;
            line-height: 1.1;
        }

        /* ===== 新增：頁面內容樣式 ===== */
        .page-header {
            text-align: center;
            margin: 40px 0;
            padding: 30px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .page-header h2 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .page-header p {
            color: #6c757d;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .page-header a {
            color: #e74c3c;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .page-header a:hover {
            color: #c0392b;
            text-decoration: underline;
        }

        /* 區域導航 */
        .area-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 40px 0;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .area-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 15px;
            background: #f8f9fa;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 120px;
            border: 2px solid transparent;
        }

        .area-nav-item:hover,
        .area-nav-item.active {
            background: #e74c3c;
            transform: translateY(-5px);
            border-color: #c0392b;
        }

        .area-nav-item:hover .area-icon,
        .area-nav-item.active .area-icon {
            transform: scale(1.2);
            color: white;
        }

        .area-nav-item:hover span,
        .area-nav-item.active span {
            color: white;
        }

        .area-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .area-nav-item span {
            color: #2c3e50;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .area-nav-item span a {
            color: inherit;
            text-decoration: none;
        }

        /* 內容區域 */
        .content-section {
            margin: 60px 0;
            padding: 40px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 6px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .content-section:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            transform: translateY(-3px);
        }

        .area-detail {
            max-width: 1000px;
            margin: 0 auto;
        }

        .area-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #e9ecef;
        }

        .area-main-icon {
            font-size: 3rem;
            font-weight: 800;
            color: #e74c3c;
            margin-right: 20px;
            min-width: 60px;
            text-align: center;
        }

        .area-title {
            color: #2c3e50;
            font-size: 2.2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .area-title a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .area-title a:hover {
            color: #e74c3c;
        }

        .area-subtitle {
            color: #6c757d;
            font-size: 1.3rem;
            font-weight: 500;
        }

        /* 統計網格 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .stat-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px 15px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* 特色網格 */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .feature-card {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid #e74c3c;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }

        .feature-card:hover {
            background: white;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .feature-card h4 {
            color: #2c3e50;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            color: #6c757d;
            line-height: 1.6;
        }

        /* 注意事項框 */
        .notice-box {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
            border: 2px solid #ffc107;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .notice-box h4 {
            color: #856404;
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .notice-box p {
            color: #856404;
            line-height: 1.6;
            margin: 0;
        }

        /* 流程步驟 */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .process-step {
            background: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #e74c3c;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .process-step h4 {
            color: #2c3e50;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .process-step p {
            color: #6c757d;
            line-height: 1.6;
        }

        /* 聯絡CTA */
        .contact-cta {
            text-align: center;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 50px 30px;
            border-radius: 15px;
            box-shadow: 0 6px 25px rgba(0,0,0,0.2);
        }

        .contact-cta h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .contact-cta p {
            font-size: 1.2rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .phone-number {
            display: inline-block;
            background: #e74c3c;
            color: white;
            font-size: 2rem;
            font-weight: 700;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            margin: 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
        }

        .phone-number:hover {
            background: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
        }

        /* ===== 響應式設計 ===== */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 25px;
                text-align: center;
            }
            
            .footer-bottom-links {
                justify-content: center;
            }
            
            .back-to-top {
                bottom: 30px;
                right: 30px;
                width: 55px;
                height: 55px;
            }
            
            .mobile-toolbar {
                display: block;
            }
            
            .footer-toolbar {
                display: none;
            }
            
            .footer-toolbar-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            /* 新增響應式 */
            .page-header h2 {
                font-size: 2rem;
            }

            .page-header p {
                font-size: 1.1rem;
            }

            .area-nav {
                gap: 10px;
            }

            .area-nav-item {
                min-width: 100px;
                padding: 15px 10px;
            }

            .area-icon {
                font-size: 2rem;
            }

            .content-section {
                padding: 30px 20px;
            }

            .area-header {
                flex-direction: column;
                text-align: center;
            }

            .area-main-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .phone-number {
                font-size: 1.5rem;
                padding: 12px 25px;
            }
        }

        @media (max-width: 768px) {
            .footer-nav {
                padding: 50px 0 20px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            
            .footer-column h3 {
                font-size: 1.3rem;
            }
            
            .footer-column h3 .icon {
                font-size: 1.6rem;
                width: 40px;
                height: 40px;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-links a::before {
                font-size: 1.1rem;
                width: 22px;
                height: 22px;
            }
            
            .contact-item .icon {
                font-size: 1.3rem;
                width: 35px;
                height: 35px;
            }
            
            .footer-info {
                font-size: 0.9rem;
                gap: 6px;
                justify-content: flex-start;
            }
            
            .footer-info .separator {
                margin: 0 2px;
            }

            /* 新增響應式 */
            .page-header {
                margin: 20px 0;
                padding: 20px 15px;
            }

            .page-header h2 {
                font-size: 1.8rem;
            }

            .page-header p {
                font-size: 1rem;
            }

            .area-nav {
                flex-direction: column;
                align-items: center;
            }

            .area-nav-item {
                width: 100%;
                max-width: 300px;
                flex-direction: row;
                justify-content: flex-start;
                text-align: left;
            }

            .area-icon {
                margin-right: 15px;
                margin-bottom: 0;
                font-size: 1.8rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .content-section {
                margin: 30px 0;
                padding: 20px 15px;
            }

            .area-title {
                font-size: 1.8rem;
            }

            .area-subtitle {
                font-size: 1.1rem;
            }

            .contact-cta {
                padding: 30px 20px;
            }

            .contact-cta h3 {
                font-size: 1.8rem;
            }

            .phone-number {
                font-size: 1.3rem;
                padding: 10px 20px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .mobile-menu ul li a {
                font-size: 18px;
                padding: 16px 20px;
            }
            
            .mobile-menu ul ul li a {
                padding: 14px 20px 14px 40px;
                font-size: 16px;
            }
            
            .footer-nav {
                padding: 40px 0 15px;
            }
            
            .footer-grid {
                gap: 30px;
            }
            
            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }
            
            .contact-item {
                font-size: 0.95rem;
            }
            
            .footer-links a {
                font-size: 0.95rem;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .footer-toolbar {
                padding: 12px 0;
            }
            
            .footer-info {
                font-size: 0.85rem;
                gap: 4px;
                justify-content: flex-start;
            }
            
            .footer-info .separator {
                margin: 0 1px;
            }
            
            .mobile-toolbar {
                padding: 6px 0;
            }
            
            .mobile-toolbar-container {
                padding: 0 8px;
            }
            
            .mobile-toolbar-grid {
                gap: 6px;
            }
            
            .mobile-tool-item {
                padding: 4px 2px;
            }
            
            .mobile-tool-icon {
                width: 32px;
                height: 32px;
                margin-bottom: 2px;
            }
            
            .mobile-tool-label {
                font-size: 0.65rem;
            }

            /* 新增響應式 */
            .page-header h2 {
                font-size: 1.6rem;
            }

            .area-title {
                font-size: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .feature-card,
            .process-step {
                padding: 20px 15px;
            }

            .contact-cta h3 {
                font-size: 1.5rem;
            }

            .phone-number {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 360px) {
            .mobile-toolbar {
                padding: 5px 0;
            }
            
            .mobile-tool-icon {
                width: 30px;
                height: 30px;
            }
            
            .mobile-tool-label {
                font-size: 0.6rem;
            }

            /* 新增響應式 */
            .page-header {
                padding: 15px 10px;
            }

            .content-section {
                padding: 15px 10px;
            }

            .area-nav-item {
                padding: 12px 8px;
            }

            .area-icon {
                font-size: 1.5rem;
            }
        }

        /* PC顯示設定 - 頁尾底部工具列 */
        @media (min-width: 993px) {
            .footer-toolbar {
                display: block;
            }
            
            /* 小螢幕文字上移調整 */
            @media (max-width: 1200px) {
                .footer-info {
                    position: relative;
                    top: -6px;
                }
            }
        }

        /* 列印樣式 */
        @media print {
            * {
                background: transparent !important;
                color: black !important;
                box-shadow: none !important;
                text-shadow: none !important;
            }
            
            .btn, .mobile-toggle, .back-to-top, .footer-nav, header {
                display: none !important;
            }
        }

        /* 動畫效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-column {
            animation: fadeInUp 0.8s ease forwards;
        }

        .footer-column:nth-child(1) { animation-delay: 0.1s; }
        .footer-column:nth-child(2) { animation-delay: 0.2s; }
        .footer-column:nth-child(3) { animation-delay: 0.3s; }

        /* 懸停放大效果 */
        .footer-column:hover h3 .icon {
            transform: scale(1.1);
            background: rgba(231, 76, 60, 0.2);
            border-color: rgba(231, 76, 60, 0.5);
        }

        /* 新增動畫效果 */
        .content-section {
            animation: fadeInUp 0.6s ease forwards;
        }

        .area-nav-item {
            animation: fadeInUp 0.5s ease forwards;
        }

        .stat-card {
            animation: fadeInUp 0.7s ease forwards;
        }

        .feature-card {
            animation: fadeInUp 0.8s ease forwards;
        }
