﻿<style>
/* 版本2 CSS樣式 - 使用v2前綴避免衝突 */
        .v2-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .v2-container {
            font-family: 'Microsoft JhengHei', Arial, sans-serif;
            line-height: 1.8;
            color: #333;
        }
        
        .v2-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .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-title {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .v2-contact-info {
            text-align: right;
            font-size: 18px;
        }
        
        .v2-hero {
            background: linear-gradient(rgba(30,60,114,0.85), rgba(42,82,152,0.85)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232a5298" width="1200" height="600"/><circle fill="%231e3c72" opacity="0.3" cx="300" cy="150" r="120"/><circle fill="%231e3c72" opacity="0.3" cx="900" cy="400" r="150"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 20px;
            text-align: center;
        }
        
        .v2-hero h2 {
            font-size: 36px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .v2-hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        
        .v2-cta-button {
            display: inline-block;
            background: #ff6b35;
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        
        .v2-cta-button:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
        }
        
        .v2-main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .v2-section-title {
            font-size: 32px;
            color: #1e3c72;
            margin-bottom: 30px;
            border-left: 5px solid #2a5298;
            padding-left: 15px;
        }
        
        .v2-section-subtitle {
            font-size: 24px;
            color: #1e3c72;
            margin: 30px 0 15px;
        }
        
        .v2-intro-section {
            background: white;
        }
        
        .v2-intro-content {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 15px;
            margin-top: 30px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .v2-services-section {
            background: #f8f9fa;
        }
        
        .v2-service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .v2-service-card {
            background: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
            border-top: 4px solid #2a5298;
        }
        
        .v2-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .v2-service-card h3 {
            color: #2a5298;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .v2-area-section {
            background: white;
        }
        
        .v2-area-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .v2-area-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }
        
        .v2-area-card h3 {
            color: white;
            margin-top: 0;
            font-size: 26px;
            margin-bottom: 20px;
        }
        
        .v2-area-highlights {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }
        
        .v2-area-highlights li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }
        
        .v2-area-highlights li:before {
            content: "✓";
            position: absolute;
            left: 0;
            font-weight: bold;
            color: #fff;
        }
        
        .v2-pricing-section {
            background: #f8f9fa;
        }
        
        .v2-price-info {
            background: white;
            padding: 35px;
            border-radius: 12px;
            margin-top: 25px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }
        
        .v2-price-table {
            margin-top: 25px;
            overflow-x: auto;
        }
        
        .v2-price-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .v2-price-table th {
            background: #2a5298;
            color: white;
            padding: 15px;
            text-align: left;
        }
        
        .v2-price-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .v2-price-table tr:hover {
            background: #f8f9fa;
        }
        
        .v2-advantages-section {
            background: white;
        }
        
        .v2-advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 35px;
        }
        
        .v2-advantage-item {
            text-align: center;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .v2-advantage-item:hover {
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .v2-advantage-icon {
            font-size: 56px;
            margin-bottom: 20px;
            display: block;
        }
        
        .v2-process-section {
            background: #f8f9fa;
        }
        
        .v2-timeline {
            position: relative;
            margin-top: 40px;
            padding-left: 50px;
        }
        
        .v2-timeline:before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #2a5298;
        }
        
        .v2-timeline-item {
            position: relative;
            margin-bottom: 40px;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }
        
        .v2-timeline-item:before {
            content: '';
            position: absolute;
            left: -38px;
            top: 30px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #ff6b35;
            border: 3px solid white;
            box-shadow: 0 0 0 3px #2a5298;
        }
        
        .v2-testimonials-section {
            background: white;
        }
        
        .v2-testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 35px;
        }
        
        .v2-testimonial-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            border-left: 4px solid #ff6b35;
            font-style: italic;
        }
        
        .v2-testimonial-author {
            margin-top: 15px;
            font-style: normal;
            font-weight: bold;
            color: #2a5298;
        }
        
        .v2-contact-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            text-align: center;
        }
        
        .v2-contact-section .v2-section-title {
            color: white;
            border-left-color: white;
        }
        
        .v2-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .v2-contact-item {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .v2-contact-item h3 {
            color: white;
            margin-top: 0;
        }
        
        .v2-footer {
            background: #0d1b2a;
            color: white;
            text-align: center;
            padding: 30px 20px;
        }
        
        .v2-footer-links {
            margin-top: 15px;
            font-size: 14px;
            color: #aaa;
        }
        
        @media (max-width: 768px) {
            .v2-title {
                font-size: 24px;
            }
            
            .v2-hero h2 {
                font-size: 28px;
            }
            
            .v2-header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .v2-contact-info {
                text-align: center;
                margin-top: 15px;
            }
            
            .v2-timeline {
                padding-left: 30px;
            }
            
            .v2-timeline:before {
                left: 10px;
            }
            
            .v2-timeline-item:before {
                left: -28px;
            }
        }
    </style>