﻿ <style>
        /* 版本2樣式 - 所有類別添加-v2後綴 */
        .v2 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .v2 body {
            font-family: 'Microsoft JhengHei', Arial, sans-serif;
            line-height: 1.8;
            color: #2d3436;
            background: #fff;
        }
        
        .v2-header {
            background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
            color: white;
            padding: 25px 0;
            box-shadow: 0 4px 12px rgba(0,184,148,0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .v2-header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .v2-h1 {
            font-size: 30px;
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .v2-tagline {
            font-size: 15px;
            opacity: 0.95;
        }
        
        .v2-contact-quick {
            text-align: right;
            font-size: 17px;
        }
        
        .v2-contact-quick strong {
            font-size: 20px;
            display: block;
            margin-bottom: 5px;
        }
        
        .v2-hero {
            background: linear-gradient(rgba(0,184,148,0.9), rgba(0,206,201,0.85)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%2300cec9" width="1200" height="600"/><path fill="%2300b894" opacity="0.4" d="M0 400 Q300 300 600 400 T1200 400 V600 H0 Z"/><circle fill="%23fff" opacity="0.1" cx="200" cy="150" r="80"/><circle fill="%23fff" opacity="0.1" cx="1000" cy="200" r="100"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px;
            text-align: center;
        }
        
        .v2-hero h2 {
            font-size: 42px;
            margin-bottom: 25px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            line-height: 1.3;
        }
        
        .v2-hero-subtitle {
            font-size: 22px;
            margin-bottom: 35px;
            font-weight: 300;
        }
        
        .v2-hero-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }
        
        .v2-hero-features span {
            font-size: 18px;
            background: rgba(255,255,255,0.2);
            padding: 10px 25px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }
        
        .v2-cta-button {
            display: inline-block;
            background: #fd79a8;
            color: white;
            padding: 18px 45px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 19px;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(253,121,168,0.4);
        }
        
        .v2-cta-button:hover {
            background: #e84393;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(253,121,168,0.6);
        }
        
        .v2-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 70px 20px;
        }
        
        .v2-h2 {
            font-size: 36px;
            color: #00b894;
            margin-bottom: 35px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .v2-h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #00b894, #00cec9);
            border-radius: 2px;
        }
        
        .v2-h3 {
            font-size: 26px;
            color: #2d3436;
            margin: 25px 0 15px;
        }
        
        .v2-intro-section {
            background: linear-gradient(to bottom, #f8f9fa, #fff);
            text-align: center;
        }
        
        .v2-intro-highlight {
            background: white;
            padding: 45px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-top: 35px;
            border: 2px solid #e8f8f5;
        }
        
        .v2-intro-highlight p {
            font-size: 18px;
            line-height: 2;
            color: #636e72;
        }
        
        .v2-services-combo {
            background: white;
        }
        
        .v2-combo-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-top: 45px;
        }
        
        .v2-combo-card {
            background: linear-gradient(135deg, #fff 0%, #f1f9f7 100%);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            border-top: 5px solid #00b894;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .v2-combo-card:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0,206,201,0.1) 0%, transparent 70%);
            transition: all 0.5s;
        }
        
        .v2-combo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,184,148,0.2);
        }
        
        .v2-combo-card:hover:before {
            top: -30%;
            right: -30%;
        }
        
        .v2-card-icon {
            font-size: 64px;
            margin-bottom: 20px;
            display: block;
        }
        
        .v2-combo-card .v2-h3 {
            color: #00b894;
            margin-top: 0;
            position: relative;
            z-index: 1;
        }
        
        .v2-combo-card ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }
        
        .v2-combo-card li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            color: #636e72;
        }
        
        .v2-combo-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #00b894;
            font-weight: bold;
            font-size: 20px;
        }
        
        .v2-area-intro {
            background: #f8f9fa;
        }
        
        .v2-area-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .v2-area-feature {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            text-align: center;
            transition: all 0.3s;
        }
        
        .v2-area-feature:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,184,148,0.15);
        }
        
        .v2-area-icon {
            font-size: 72px;
            margin-bottom: 20px;
            display: block;
            filter: drop-shadow(0 4px 8px rgba(0,184,148,0.2));
        }
        
        .v2-area-feature .v2-h3 {
            color: #00b894;
            font-size: 22px;
        }
        
        .v2-service-detail {
            background: white;
        }
        
        .v2-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }
        
        .v2-detail-section {
            background: #f8f9fa;
            padding: 35px;
            border-radius: 15px;
            border-left: 5px solid #00b894;
        }
        
        .v2-detail-section .v2-h3 {
            margin-top: 0;
            color: #00b894;
        }
        
        .v2-detail-list {
            margin-top: 20px;
        }
        
        .v2-detail-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #dfe6e9;
        }
        
        .v2-detail-list li:last-child {
            border-bottom: none;
        }
        
        .v2-pricing-info {
            background: linear-gradient(135deg, #e8f8f5 0%, #d1f2eb 100%);
        }
        
        .v2-price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .v2-price-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
        }
        
        .v2-price-card .v2-h3 {
            color: #00b894;
            font-size: 24px;
            margin-top: 0;
            padding-bottom: 15px;
            border-bottom: 2px solid #e8f8f5;
        }
        
        .v2-price-highlight {
            background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
            color: white;
            padding: 25px;
            border-radius: 12px;
            margin-top: 35px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(253,121,168,0.3);
        }
        
        .v2-price-highlight strong {
            font-size: 28px;
            display: block;
            margin-bottom: 10px;
        }
        
        .v2-why-choose {
            background: white;
        }
        
        .v2-benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 40px;
        }
        
        .v2-benefit-box {
            text-align: center;
            padding: 30px;
            background: linear-gradient(to bottom, #fff, #f8f9fa);
            border-radius: 12px;
            border: 2px solid #e8f8f5;
            transition: all 0.3s;
        }
        
        .v2-benefit-box:hover {
            border-color: #00b894;
            background: white;
            box-shadow: 0 10px 30px rgba(0,184,148,0.1);
        }
        
        .v2-benefit-icon {
            font-size: 56px;
            margin-bottom: 20px;
            display: block;
        }
        
        .v2-process-flow {
            background: #f8f9fa;
        }
        
        .v2-flow-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
            position: relative;
        }
        
        .v2-flow-step {
            background: white;
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            position: relative;
        }
        
        .v2-flow-number {
            background: linear-gradient(135deg, #00b894, #00cec9);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            margin: 0 auto 20px;
            box-shadow: 0 4px 12px rgba(0,184,148,0.3);
        }
        
        .v2-testimonial-section {
            background: white;
        }
        
        .v2-testimonial-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .v2-testimonial {
            background: linear-gradient(135deg, #f8f9fa 0%, #e8f8f5 100%);
            padding: 35px;
            border-radius: 15px;
            border-left: 5px solid #fd79a8;
            position: relative;
            box-shadow: 0 3px 15px rgba(0,0,0,0.06);
        }
        
        .v2-testimonial:before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 80px;
            color: rgba(0,184,148,0.1);
            font-family: Georgia, serif;
        }
        
        .v2-testimonial-text {
            position: relative;
            z-index: 1;
            font-style: italic;
            color: #636e72;
            line-height: 1.8;
        }
        
        .v2-testimonial-author {
            margin-top: 20px;
            font-weight: bold;
            color: #00b894;
            text-align: right;
        }
        
        .v2-contact-section {
            background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
            color: white;
            text-align: center;
        }
        
        .v2-contact-section .v2-h2 {
            color: white;
        }
        
        .v2-contact-section .v2-h2:after {
            background: white;
        }
        
        .v2-contact-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .v2-contact-box {
            background: rgba(255,255,255,0.15);
            padding: 30px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }
        
        .v2-contact-box:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-5px);
        }
        
        .v2-contact-box .v2-h3 {
            color: white;
            margin-top: 0;
            font-size: 22px;
        }
        
        .v2-contact-icon {
            font-size: 48px;
            margin-bottom: 15px;
            display: block;
        }
        
        .v2-footer {
            background: #2d3436;
            color: white;
            padding: 40px 20px;
        }
        
        .v2-footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .v2-footer-info {
            margin-top: 20px;
            color: #b2bec3;
            font-size: 14px;
        }
        
        .v2-keywords-footer {
            background: #f8f9fa;
            padding: 30px 20px;
            text-align: center;
            font-size: 13px;
            color: #636e72;
            line-height: 1.8;
        }
        
        @media (max-width: 968px) {
            .v2-detail-grid {
                grid-template-columns: 1fr;
            }
            
            .v2-benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .v2-h1 {
                font-size: 24px;
            }
            
            .v2-hero h2 {
                font-size: 32px;
            }
            
            .v2-hero-features {
                flex-direction: column;
                gap: 15px;
            }
            
            .v2-header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .v2-contact-quick {
                text-align: center;
                margin-top: 15px;
            }
            
            .v2-benefits-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>