﻿<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: #333;
            background-color: #f5f5f5;
        }
        
        .v2-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
        }
        
        .v2-header {
            background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .v2-header h1 {
            font-size: 2.5em;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .v2-header p {
            font-size: 1.2em;
            opacity: 0.95;
        }
        
        .v2-area-tags {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .v2-area-tag {
            background-color: rgba(255,255,255,0.2);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 1em;
        }
        
        .v2-content {
            padding: 0 20px;
        }
        
        .v2-h1 {
            font-size: 2.2em;
            color: #16a085;
            margin: 30px 0 20px;
            padding-bottom: 15px;
            border-bottom: 3px solid #1abc9c;
        }
        
        .v2-h2 {
            font-size: 1.8em;
            color: #0e6655;
            margin: 35px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #1abc9c;
        }
        
        .v2-h3 {
            font-size: 1.4em;
            color: #16a085;
            margin: 25px 0 15px;
        }
        
        .v2 p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.05em;
        }
        
        .v2 strong {
            color: #0e6655;
            font-weight: 600;
        }
        
        .v2-highlight-box {
            background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
            padding: 25px;
            margin: 25px 0;
            border-radius: 8px;
            border-left: 5px solid #1abc9c;
        }
        
        .v2-service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .v2-service-card {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-top: 4px solid #1abc9c;
            transition: transform 0.3s ease;
        }
        
        .v2-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        
        .v2-area-section {
            background-color: #f8fffe;
            padding: 30px;
            margin: 30px 0;
            border-radius: 10px;
            border: 2px solid #1abc9c;
        }
        
        .v2-price-table {
            background-color: #fff;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .v2-case-study {
            background: linear-gradient(135deg, #fff9e6 0%, #ffe9cc 100%);
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
            border: 2px solid #f39c12;
        }
        
        .v2-feature-list {
            background-color: #ecf9f6;
            padding: 20px 30px;
            margin: 20px 0;
            border-radius: 5px;
        }
        
        .v2-contact-section {
            background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
            color: white;
            padding: 40px;
            margin: 40px 0;
            border-radius: 10px;
            text-align: center;
        }
        
        .v2-contact-section .v2-h2 {
            color: white;
            border-left: none;
            padding-left: 0;
        }
        
        .v2-company-info {
            background-color: #0e6655;
            color: white;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
        }
        
        .v2-company-info p {
            margin: 10px 0;
        }
        
        .v2-process-steps {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 20px 0;
        }
        
        .v2-step {
            background-color: #f8fffe;
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid #1abc9c;
        }
        
        .v2-footer {
            background-color: #0e6655;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }
        
        @media (max-width: 768px) {
            .v2-header h1 {
                font-size: 1.8em;
            }
            
            .v2-h1 {
                font-size: 1.6em;
            }
            
            .v2-h2 {
                font-size: 1.4em;
            }
            
            .v2-container {
                padding: 10px;
            }
            
            .v2-content {
                padding: 0 10px;
            }
            
            .v2-service-grid {
                grid-template-columns: 1fr;
            }
            
            .v2-area-tags {
                flex-direction: column;
                align-items: center;
            }
        }
    </style>