﻿<style>
        /* 版本2樣式 - 所有類別添加-v2後綴 */
        .v2 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .v2 body {
            font-family: "Microsoft JhengHei", "PingFang TC", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
        }

        .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;
        }

        .v2-company-name {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .v2-company-slogan {
            font-size: 18px;
            opacity: 0.95;
        }

        .v2-nav {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .v2-nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .v2-nav-content a {
            color: #1e3c72;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .v2-nav-content a:hover {
            color: #2a5298;
        }

        .v2-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .v2-h1 {
            font-size: 36px;
            color: #1e3c72;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #2a5298;
        }

        .v2-h2 {
            font-size: 28px;
            color: #2a5298;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-left: 15px;
            border-left: 5px solid #1e3c72;
        }

        .v2-h3 {
            font-size: 22px;
            color: #333;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .v2 p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .v2-intro-section {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }

        .v2-content-section {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }

        .v2-highlight-box {
            background: #f0f7ff;
            border-left: 4px solid #2a5298;
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
        }

        .v2-service-list {
            background: #fff;
            padding: 20px;
            margin: 20px 0;
        }

        .v2-service-list ul {
            list-style: none;
            padding-left: 0;
        }

        .v2-service-list li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
        }

        .v2-service-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2a5298;
            font-weight: bold;
            font-size: 20px;
        }

        .v2-contact-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 40px;
            border-radius: 10px;
            margin-top: 50px;
        }

        .v2-contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .v2-contact-card {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .v2-contact-card .v2-h3 {
            color: white;
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 24px;
        }

        .v2-contact-card p {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .v2-cta-button {
            display: inline-block;
            background: white;
            color: #1e3c72;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            margin-top: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .v2-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .v2-footer {
            background: #1e3c72;
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 50px;
        }

        .v2-keywords {
            background: #f8f9fa;
            padding: 20px;
            margin: 30px 0;
            border-radius: 8px;
            font-size: 14px;
            color: #666;
            line-height: 2;
        }

        @media (max-width: 768px) {
            .v2-company-name {
                font-size: 24px;
            }

            .v2-h1 {
                font-size: 28px;
            }

            .v2-h2 {
                font-size: 24px;
            }

            .v2-intro-section, .v2-content-section {
                padding: 25px;
            }

            .v2-contact-info {
                grid-template-columns: 1fr;
            }
        }
    </style>