﻿        .fenglin-v2-container,
        .fenglin-v2-section,
        .fenglin-v2-card,
        .fenglin-v2-btn {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        /* 獨立命名空間變數 */
        :root {
            --fenglin-v2-primary-color: #2c5c3e;
            --fenglin-v2-secondary-color: #f5a623;
            --fenglin-v2-light-color: #f8f9fa;
            --fenglin-v2-dark-color: #343a40;
            --fenglin-v2-text-color: #333;
            --fenglin-v2-shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
            --fenglin-v2-shadow-md: 0 4px 8px rgba(0,0,0,0.15);
            --fenglin-v2-shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
            --fenglin-v2-border-radius: 8px;
            --fenglin-v2-border-radius-lg: 12px;
            --fenglin-v2-transition: all 0.3s ease;
        }
        
        /* 獨立命名空間容器 */
        .fenglin-v2-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 獨立命名空間區塊 */
        .fenglin-v2-section {
            padding: 60px 0;
            position: relative;
        }
        
        .fenglin-v2-section-light {
            background-color: var(--fenglin-v2-light-color);
        }
        
        .fenglin-v2-section-primary {
            background-color: var(--fenglin-v2-primary-color);
            color: white;
        }
        
        /* 獨立命名空間標題 */
        .fenglin-v2-section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .fenglin-v2-section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--fenglin-v2-primary-color);
        }
        
        .fenglin-v2-section-primary .fenglin-v2-section-title h2 {
            color: white;
        }
        
        .fenglin-v2-section-title .fenglin-v2-lead {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .fenglin-v2-section-primary .fenglin-v2-section-title .fenglin-v2-lead {
            color: rgba(255,255,255,0.9);
        }
        
        /* 獨立命名空間網格系統 */
        .fenglin-v2-grid {
            display: grid;
            gap: 30px;
        }
        
        .fenglin-v2-grid-2 {
            grid-template-columns: repeat(1, 1fr);
        }
        
        .fenglin-v2-grid-3 {
            grid-template-columns: repeat(1, 1fr);
        }
        
        .fenglin-v2-grid-4 {
            grid-template-columns: repeat(1, 1fr);
        }
        
        @media (min-width: 768px) {
            .fenglin-v2-grid-2 {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .fenglin-v2-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .fenglin-v2-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .fenglin-v2-grid-3 {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .fenglin-v2-grid-4 {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* 獨立命名空間卡片 */
        .fenglin-v2-card {
            background: white;
            border-radius: var(--fenglin-v2-border-radius);
            box-shadow: var(--fenglin-v2-shadow-sm);
            overflow: hidden;
            transition: var(--fenglin-v2-transition);
            height: 100%;
        }
        
        .fenglin-v2-card:hover {
            box-shadow: var(--fenglin-v2-shadow-md);
            transform: translateY(-5px);
        }
        
        .fenglin-v2-card-content {
            padding: 25px;
        }
        
        .fenglin-v2-card-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--fenglin-v2-primary-color);
        }
        
        .fenglin-v2-card-text {
            color: var(--fenglin-v2-text-color);
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .fenglin-v2-text-center {
            text-align: center;
        }
        
        /* 獨立命名空間按鈕 */
        .fenglin-v2-btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--fenglin-v2-transition);
            text-align: center;
        }
        
        .fenglin-v2-btn-primary {
            background-color: var(--fenglin-v2-primary-color);
            color: white;
        }
        
        .fenglin-v2-btn-primary:hover {
            background-color: #1e402b;
            color: white;
        }
        
        .fenglin-v2-btn-secondary {
            background-color: var(--fenglin-v2-secondary-color);
            color: white;
        }
        
        .fenglin-v2-btn-secondary:hover {
            background-color: #e6950f;
            color: white;
        }
        
        .fenglin-v2-btn-outline {
            background-color: transparent;
            color: var(--fenglin-v2-primary-color);
            border-color: var(--fenglin-v2-primary-color);
        }
        
        .fenglin-v2-btn-outline:hover {
            background-color: var(--fenglin-v2-primary-color);
            color: white;
        }
        
        .fenglin-v2-btn-large {
            padding: 16px 32px;
            font-size: 1.1rem;
        }
        
        .fenglin-v2-btn-white {
            background-color: white;
            color: var(--fenglin-v2-primary-color);
        }
        
        .fenglin-v2-btn-white:hover {
            background-color: #f8f9fa;
            color: var(--fenglin-v2-primary-color);
        }
        
        /* 獨立命名空間標籤 */
        .fenglin-v2-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        
        .fenglin-v2-badge-primary {
            background-color: var(--fenglin-v2-primary-color);
            color: white;
        }
        
        .fenglin-v2-badge-secondary {
            background-color: var(--fenglin-v2-secondary-color);
            color: white;
        }
        
        /* 獨立命名空間工具類 */
        .fenglin-v2-mt-3 {
            margin-top: 15px;
        }
        
        .fenglin-v2-mt-5 {
            margin-top: 25px;
        }
        
        .fenglin-v2-mb-3 {
            margin-bottom: 15px;
        }
        
        .fenglin-v2-mb-5 {
            margin-bottom: 25px;
        }
        
        /* 獨立命名空間動畫 */
        @keyframes fenglin-v2-fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fenglin-v2-fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fenglin-v2-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fenglin-v2-delay-1 { transition-delay: 0.2s; }
        .fenglin-v2-delay-2 { transition-delay: 0.4s; }
        .fenglin-v2-delay-3 { transition-delay: 0.6s; }
        
        /* 獨立命名空間響應式隱藏類 */
        .fenglin-v2-d-none {
            display: none;
        }
        
        .fenglin-v2-d-inline-block {
            display: inline-block;
        }
        
        @media (min-width: 768px) {
            .fenglin-v2-d-md-inline-block {
                display: inline-block;
            }
        }
        
        @media (min-width: 992px) {
            .fenglin-v2-d-lg-inline {
                display: inline;
            }
            
            .fenglin-v2-d-lg-none {
                display: none;
            }
        }
        
        /* 獨立命名空間小字體 */
        .fenglin-v2-small {
            font-size: 0.9rem;
        }
        
        /* 主視覺區樣式 */
        .fenglin-v2-hero {
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                        url('https://images.unsplash.com/photo-1542820229-a7f7e6c4b96b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            min-height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            padding: 80px 0;
        }
        
        .fenglin-v2-hero h1 {
            font-size: 2.8rem;
            line-height: 1.3;
            margin-bottom: 20px;
            color: var(--fenglin-v2-primary-color);
        }
        
        .fenglin-v2-hero-subtitle {
            font-size: 1.3rem;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #555;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* 地理徽章樣式 */
        .fenglin-v2-geo-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 30px;
            padding: 10px 20px;
            background-color: rgba(255,255,255,0.9);
            border-radius: 25px;
            box-shadow: var(--fenglin-v2-shadow-sm);
            flex-wrap: wrap;
            justify-content: center;
        }
        
        /* CTA區域樣式 */
        .fenglin-v2-cta-section {
            background: linear-gradient(rgba(44,92,62,0.9), rgba(44,92,62,0.9)), 
                        url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
        }
        
        .fenglin-v2-cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .fenglin-v2-cta-subtitle {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        .fenglin-v2-cta-buttons-large {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        /* 信任保證樣式 */
        .fenglin-v2-trust-guarantee {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .fenglin-v2-trust-guarantee > div {
            text-align: center;
            min-width: 120px;
        }
        
        /* 產品卡片樣式 - 修正版 */
        .fenglin-v2-product-image {
            height: 200px;
            width: 100%;
            background-color: #e8f5e9;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .fenglin-v2-product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .fenglin-v2-product-badge {
            display: inline-block;
            background-color: var(--fenglin-v2-secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        /* 影片卡片樣式 */
        .fenglin-v2-video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }
        
        .fenglin-v2-video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* 頁尾樣式 */
        .fenglin-v2-site-footer {
            background-color: #2a2a2a;
            color: #ccc;
            padding: 60px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        .fenglin-v2-site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100vw;
            height: 100%;
            background-color: #2a2a2a;
            z-index: -1;
        }
        
        .fenglin-v2-footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        @media (min-width: 768px) {
            .fenglin-v2-footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .fenglin-v2-footer-content {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .fenglin-v2-footer-section h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--fenglin-v2-secondary-color);
        }
        
        .fenglin-v2-footer-section p {
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .fenglin-v2-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .fenglin-v2-contact-icon {
            font-size: 1.2rem;
            min-width: 24px;
        }
        
        .fenglin-v2-social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .fenglin-v2-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #444;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            font-size: 1.2rem;
            transition: var(--fenglin-v2-transition);
        }
        
        .fenglin-v2-social-link:hover {
            background-color: var(--fenglin-v2-primary-color);
            transform: translateY(-3px);
        }
        
        .fenglin-v2-map-container {
            border-radius: var(--fenglin-v2-border-radius);
            overflow: hidden;
            box-shadow: var(--fenglin-v2-shadow-sm);
        }
        
        .fenglin-v2-footer-links {
            list-style: none;
        }
        
        .fenglin-v2-footer-links li {
            margin-bottom: 10px;
        }
        
        .fenglin-v2-footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--fenglin-v2-transition);
        }
        
        .fenglin-v2-footer-links a:hover {
            color: var(--fenglin-v2-secondary-color);
            padding-left: 5px;
        }
        
        .fenglin-v2-footer-bottom {
            border-top: 1px solid #444;
            padding-top: 30px;
            text-align: center;
        }
        
        .fenglin-v2-legal-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .fenglin-v2-legal-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .fenglin-v2-legal-links a:hover {
            color: var(--fenglin-v2-secondary-color);
        }
        
        .fenglin-v2-copyright {
            font-size: 0.9rem;
            color: #999;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .fenglin-v2-seo-keywords {
            font-size: 0.8rem;
            color: #777;
            line-height: 1.5;
        }
        
        /* 導航樣式 */
        .fenglin-v2-site-header {
            background-color: white;
            box-shadow: var(--fenglin-v2-shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .fenglin-v2-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .fenglin-v2-brand-logo {
            text-decoration: none;
            color: var(--fenglin-v2-primary-color);
        }
        
        .fenglin-v2-logo-text {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .fenglin-v2-logo-accent {
            color: var(--fenglin-v2-secondary-color);
        }
        
        .fenglin-v2-logo-subtitle {
            display: block;
            font-size: 0.7rem;
            font-weight: normal;
            color: #666;
        }
        
        .fenglin-v2-main-nav {
            display: none;
        }
        
        @media (min-width: 992px) {
            .fenglin-v2-main-nav {
                display: block;
            }
            
            .fenglin-v2-nav-list {
                display: flex;
                gap: 25px;
                list-style: none;
                margin: 0;
                padding: 0;
            }
            
            .fenglin-v2-nav-link {
                color: var(--fenglin-v2-dark-color);
                text-decoration: none;
                font-weight: 500;
                transition: var(--fenglin-v2-transition);
                padding: 5px 0;
                position: relative;
            }
            
            .fenglin-v2-nav-link:hover,
            .fenglin-v2-nav-link.active {
                color: var(--fenglin-v2-primary-color);
            }
            
            .fenglin-v2-nav-link.active::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 100%;
                height: 2px;
                background-color: var(--fenglin-v2-primary-color);
            }
        }
        
        .fenglin-v2-header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .fenglin-v2-menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
        }
        
        @media (min-width: 992px) {
            .fenglin-v2-menu-toggle {
                display: none;
            }
        }
        
        .fenglin-v2-menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--fenglin-v2-primary-color);
            border-radius: 3px;
        }
        
        /* GEO高亮區塊 */
        .fenglin-v2-geo-highlight {
            background-color: rgba(44,92,62,0.1);
            border-radius: var(--fenglin-v2-border-radius);
            padding: 15px;
            margin-top: 15px;
        }
        
        .fenglin-v2-geo-highlight h4 {
            color: var(--fenglin-v2-primary-color);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .fenglin-v2-geo-highlight ul {
            list-style: none;
            padding-left: 0;
        }
        
        .fenglin-v2-geo-highlight li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }
        
        .fenglin-v2-geo-highlight li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--fenglin-v2-secondary-color);
            font-weight: bold;
        }

        /* ===== 聯絡頁面專用樣式 ===== */
        .fenglin-v2-contact-container {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Microsoft JhengHei", sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* 主視覺區優化 */
        .fenglin-v2-contact-hero {
            background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .fenglin-v2-contact-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .fenglin-v2-contact-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }

        .fenglin-v2-keyword-highlight {
            color: #ffd166;
            font-weight: 600;
        }

        /* 動畫效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fenglin-v2-fade-in {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .fenglin-v2-delay-1 { animation-delay: 0.2s; }
        .fenglin-v2-delay-2 { animation-delay: 0.4s; }

        /* GEO優化標籤 */
        .fenglin-v2-geo-badge-container {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.6s forwards;
        }

        .fenglin-v2-geo-badge {
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .fenglin-v2-geo-badge-white {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* 聯絡方式區優化 */
        .fenglin-v2-contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .fenglin-v2-contact-method {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .fenglin-v2-contact-method:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .fenglin-v2-contact-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .fenglin-v2-contact-method-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c5530;
            margin-bottom: 0.5rem;
        }

        .fenglin-v2-contact-number {
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
            margin: 0.5rem 0;
        }

        .fenglin-v2-contact-description {
            color: #666;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        /* 按鈕樣式 */
        .fenglin-v2-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            gap: 0.5rem;
        }

        .fenglin-v2-btn-primary {
            background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
            color: white;
        }

        .fenglin-v2-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(44, 85, 48, 0.3);
        }

        .fenglin-v2-btn-large {
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }

        .fenglin-v2-contact-details {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .fenglin-v2-contact-detail {
            font-size: 0.875rem;
            color: #666;
            margin: 0.25rem 0;
        }

        /* 表單區域優化 */
        .fenglin-v2-contact-form-section {
            background: white;
            border-radius: 16px;
            padding: 3rem;
            margin: 3rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }

        .fenglin-v2-section-title-heading {
            font-size: 2rem;
            font-weight: 700;
            color: #2c5530;
            margin-bottom: 0.5rem;
        }

        .fenglin-v2-section-title-subtitle {
            color: #666;
            font-size: 1.1rem;
        }

        /* 表單網格系統 */
        .fenglin-v2-form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .fenglin-v2-form-group {
            margin-bottom: 1.5rem;
        }

        .fenglin-v2-form-label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #333;
            font-size: 0.95rem;
        }

        .fenglin-v2-required {
            color: #e63946;
        }

        .fenglin-v2-form-control {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .fenglin-v2-form-control:focus {
            outline: none;
            border-color: #4a7c59;
            box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
        }

        .fenglin-v2-form-control::placeholder {
            color: #999;
        }

        /* 下拉選單樣式 */
        .fenglin-v2-form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 16px;
            padding-right: 2.5rem;
        }

        /* 單選/多選樣式 */
        .fenglin-v2-radio-group {
            display: flex;
            gap: 1.5rem;
            margin-top: 0.5rem;
        }

        .fenglin-v2-radio-option {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .fenglin-v2-radio-option input[type="radio"] {
            margin-right: 0.5rem;
            accent-color: #4a7c59;
        }

        .fenglin-v2-checkbox-group {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            cursor: pointer;
        }

        .fenglin-v2-checkbox-group input[type="checkbox"] {
            margin-right: 0.75rem;
            accent-color: #4a7c59;
            width: 18px;
            height: 18px;
        }

        .fenglin-v2-checkbox-label {
            font-size: 0.95rem;
            color: #333;
            line-height: 1.4;
        }

        /* 文字區塊樣式 */
        .fenglin-v2-form-hint {
            font-size: 0.875rem;
            color: #666;
            margin-top: 0.5rem;
        }

        /* 隱私權政策 */
        .fenglin-v2-privacy-notice {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .fenglin-v2-privacy-link {
            color: #4a7c59;
            text-decoration: none;
            font-weight: 500;
        }

        .fenglin-v2-privacy-link:hover {
            text-decoration: underline;
        }

        /* 提交按鈕區 */
        .fenglin-v2-form-submit {
            text-align: center;
            margin-top: 2rem;
        }

        .fenglin-v2-form-submit-note {
            margin-top: 1rem;
            color: #666;
            font-size: 0.9rem;
        }

        /* 回應時間承諾 */
        .fenglin-v2-response-time {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 2rem;
            margin-top: 3rem;
        }

        .fenglin-v2-response-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .fenglin-v2-response-step {
            text-align: center;
            position: relative;
        }

        .fenglin-v2-step-number {
            width: 40px;
            height: 40px;
            background: #4a7c59;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .fenglin-v2-step-title {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .fenglin-v2-step-description {
            font-size: 0.875rem;
            color: #666;
        }

        /* 響應式設計 */
        @media (max-width: 768px) {
            .fenglin-v2-contact-title {
                font-size: 2rem;
            }
            
            .fenglin-v2-contact-subtitle {
                font-size: 1.1rem;
            }
            
            .fenglin-v2-contact-methods {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .fenglin-v2-contact-form-section {
                padding: 1.5rem;
                margin: 2rem 0;
            }
            
            .fenglin-v2-form-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .fenglin-v2-radio-group {
                flex-direction: column;
                gap: 0.75rem;
            }
        }

        /* ===== 公司位置與交通區塊樣式修護 ===== */

        /* 地圖與位置資訊區塊 */
        .fenglin-v2-map-section {
            margin: 4rem 0;
            padding: 0;
        }

        /* 區塊標題樣式 */
        .fenglin-v2-map-section .fenglin-v2-section-title {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .fenglin-v2-map-section .fenglin-v2-section-title-heading {
            font-size: 2rem;
            font-weight: 700;
            color: #2c5530;
            margin-bottom: 0.5rem;
        }

        .fenglin-v2-map-section .fenglin-v2-lead {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 地圖容器 */
        .fenglin-v2-map-container {
            height: 400px;
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            margin: 2rem 0 3rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* 地圖 iframe 樣式 */
        .fenglin-v2-map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        /* 資訊卡片網格 */
        .fenglin-v2-info-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 2rem 0 3rem;
        }

        /* 資訊卡片樣式 */
        .fenglin-v2-info-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .fenglin-v2-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .fenglin-v2-info-card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2c5530;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #ffd166;
        }

        .fenglin-v2-info-card-text {
            color: #333;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .fenglin-v2-info-card-note {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.5rem;
        }

        /* 交通列表樣式 */
        .fenglin-v2-transport-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .fenglin-v2-transport-item {
            padding: 0.5rem 0;
            color: #333;
            position: relative;
            padding-left: 1.5rem;
        }

        .fenglin-v2-transport-item::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #ffd166;
            font-weight: bold;
        }

        /* GEO優化內容區塊 */
        .fenglin-v2-geo-citation {
            background: #f8f9fa;
            padding: 1.5rem 2rem;
            border-radius: 12px;
            margin: 2rem 0 0;
            font-size: 1rem;
            line-height: 1.6;
            color: #333;
            border-left: 4px solid #2c5530;
        }

        /* ===== 專業諮詢選項區塊 ===== */

        .fenglin-v2-consultation-options {
            margin: 4rem 0;
        }

        /* 諮詢選項網格 */
        .fenglin-v2-option-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 3rem 0;
        }

        /* 諮詢卡片 */
        .fenglin-v2-option-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .fenglin-v2-option-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(44, 85, 48, 0.12);
        }

        /* 諮詢類型標籤 */
        .fenglin-v2-consultation-type {
            display: inline-block;
            background: #ffd166;
            color: #333;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            align-self: flex-start;
        }

        .fenglin-v2-option-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c5530;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .fenglin-v2-option-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* 特色列表 */
        .fenglin-v2-option-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .fenglin-v2-option-feature {
            padding: 0.5rem 0;
            color: #333;
            position: relative;
            padding-left: 1.5rem;
            font-size: 0.95rem;
        }

        .fenglin-v2-option-feature::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #ffd166;
            font-weight: bold;
        }

        /* ===== E-E-A-T 經驗展示區塊 ===== */

        .fenglin-v2-testimonial-contact {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 16px;
            padding: 3rem;
            margin: 4rem 0;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .fenglin-v2-quote-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .fenglin-v2-testimonial-title {
            font-size: 2rem;
            font-weight: 700;
            color: #2c5530;
            margin-bottom: 1rem;
        }

        .fenglin-v2-testimonial-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
            max-width: 800px;
            margin-bottom: 2rem;
        }

        /* 信任徽章網格 */
        .fenglin-v2-trust-badges {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin: 2rem 0 0;
        }

        .fenglin-v2-trust-badge {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease;
        }

        .fenglin-v2-trust-badge:hover {
            transform: translateY(-5px);
        }

        .fenglin-v2-trust-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .fenglin-v2-trust-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c5530;
            margin-bottom: 0.25rem;
        }

        .fenglin-v2-trust-description {
            font-size: 0.875rem;
            color: #666;
        }

        /* ===== 最後CTA區塊 ===== */

        .fenglin-v2-final-cta {
            background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
            border-radius: 24px;
            padding: 4rem;
            margin: 4rem 0 2rem;
            text-align: center;
            color: white;
            box-shadow: 0 12px 40px rgba(44, 85, 48, 0.3);
        }

        .fenglin-v2-cta-box {
            max-width: 800px;
            margin: 0 auto;
        }

        .fenglin-v2-cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .fenglin-v2-cta-description {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .fenglin-v2-cta-actions {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        /* CTA按鈕特殊樣式 */
        .fenglin-v2-cta-actions .fenglin-v2-btn {
            min-width: 220px;
        }

        .fenglin-v2-cta-actions .fenglin-v2-btn-primary {
            background: white;
            color: #2c5530;
        }

        .fenglin-v2-cta-actions .fenglin-v2-btn-primary:hover {
            background: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .fenglin-v2-cta-actions .fenglin-v2-btn-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .fenglin-v2-cta-actions .fenglin-v2-btn-secondary:hover {
            background: white;
            color: #2c5530;
            transform: translateY(-3px);
        }

        /* 緊急聯絡 */
        .fenglin-v2-emergency-contact {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .fenglin-v2-emergency-text {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* ===== 響應式設計 ===== */

        @media (max-width: 992px) {
            .fenglin-v2-info-cards,
            .fenglin-v2-option-grid,
            .fenglin-v2-trust-badges {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .fenglin-v2-cta-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            /* 地圖區塊 */
            .fenglin-v2-map-container {
                height: 300px;
                margin: 1.5rem 0 2rem;
            }
            
            .fenglin-v2-info-cards,
            .fenglin-v2-option-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .fenglin-v2-info-card,
            .fenglin-v2-option-card {
                padding: 1.5rem;
            }
            
            .fenglin-v2-option-title {
                font-size: 1.3rem;
            }
            
            /* 經驗展示區 */
            .fenglin-v2-testimonial-contact {
                padding: 2rem 1.5rem;
            }
            
            .fenglin-v2-testimonial-title {
                font-size: 1.5rem;
            }
            
            .fenglin-v2-testimonial-description {
                font-size: 1rem;
            }
            
            .fenglin-v2-trust-badges {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .fenglin-v2-trust-badge {
                padding: 1rem;
            }
            
            /* CTA區塊 */
            .fenglin-v2-final-cta {
                padding: 2rem 1.5rem;
                margin: 3rem 0 1.5rem;
            }
            
            .fenglin-v2-cta-title {
                font-size: 1.6rem;
            }
            
            .fenglin-v2-cta-description {
                font-size: 1rem;
            }
            
            .fenglin-v2-cta-actions {
                flex-direction: column;
                gap: 1rem;
            }
            
            .fenglin-v2-cta-actions .fenglin-v2-btn {
                width: 100%;
                min-width: auto;
            }
            
            .fenglin-v2-ml-3 {
                margin-left: 0 !important;
            }
        }

        @media (max-width: 480px) {
            .fenglin-v2-map-container {
                height: 250px;
            }
            
            .fenglin-v2-geo-citation {
                padding: 1rem 1.25rem;
                font-size: 0.9rem;
            }
            
            .fenglin-v2-trust-badges {
                grid-template-columns: 1fr;
            }
            
            .fenglin-v2-consultation-options {
                margin: 2rem 0;
            }
            
            .fenglin-v2-option-card {
                padding: 1.5rem;
            }
            
            .fenglin-v2-final-cta {
                padding: 1.5rem 1rem;
            }
            
            .fenglin-v2-cta-title {
                font-size: 1.4rem;
            }
            
            .fenglin-v2-emergency-text {
                font-size: 0.9rem;
            }
        }
.fenglin-v2-contact-form-section {
    max-width: 1000px;  /* 整個表單區塊不會太寬 */
    margin: 4rem auto;  /* 置中 */
}


/* ===== 綠色背景上的文字顏色優化 ===== */

/* 主要視覺區優化 - 讓白色文字更清晰 */
.fenglin-v2-contact-hero {
    background: linear-gradient(135deg, #1e3a25 0%, #2c5c3e 100%); /* 加深綠色背景 */
    position: relative;
}

/* 添加微弱的陰影增強文字可讀性 */
.fenglin-v2-contact-hero .fenglin-v2-contact-title,
.fenglin-v2-contact-hero .fenglin-v2-contact-subtitle {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* GEO優化標籤背景優化 */
.fenglin-v2-geo-badge-white {
    background: rgba(0, 0, 0, 0.25); /* 加深背景提高對比度 */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 500;
}

/* 最後CTA區域優化 */
.fenglin-v2-final-cta {
    background: linear-gradient(135deg, #1e3a25 0%, #2c5c3e 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.fenglin-v2-cta-title,
.fenglin-v2-cta-description {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.fenglin-v2-cta-description {
    opacity: 1; /* 提高不透明度 */
    color: rgba(255, 255, 255, 0.95);
}

.fenglin-v2-emergency-text {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 地圖區塊綠色標題 */
.fenglin-v2-section-title-heading {
    color: #1e3a25; /* 稍微加深標題顏色 */
}

/* 如果在其他區域也有綠色背景上的文字問題 */
.fenglin-v2-section-primary .fenglin-v2-section-title h2,
.fenglin-v2-section-primary .fenglin-v2-lead {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fenglin-v2-section-primary .fenglin-v2-lead {
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
}

/* 頁尾區域綠色文字優化 */
.fenglin-v3-geo-highlight h4 {
    color: #E8EFAC !important; /* 提高黃綠色對比度 */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.fenglin-v3-footer-section h3 {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 按鈕上的文字 */
.fenglin-v2-btn-primary {
    background: linear-gradient(135deg, #1e3a25 0%, #2c5c3e 100%);
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.fenglin-v2-btn-primary:hover {
    background: #1e3a25;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* 關鍵字高亮在綠色背景上 */
.fenglin-v2-keyword-highlight {
    color: #FFE484; /* 更亮的黃色提高對比度 */
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== 上半部主視覺標題強化 ===== */

/* 上半部主標題 - 更粗、更大、更明顯的陰影 */
.fenglin-v2-contact-hero .fenglin-v2-contact-title {
    font-size: 2.8rem; /* 稍微加大 */
    font-weight: 800; /* 更粗 */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* 加深加明顯的陰影 */
    color: #ffffff; /* 純白色 */
    letter-spacing: 0.5px; /* 增加字距 */
}

/* 上半部副標題 - 同樣強化 */
.fenglin-v2-contact-hero .fenglin-v2-contact-subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    color: #ffffff; /* 純白色 */
    opacity: 1; /* 確保不透明 */
}

/* 上半部關鍵字高亮 - 更亮 */
.fenglin-v2-contact-hero .fenglin-v2-keyword-highlight {
    color: #FFD966; /* 更亮的黃色 */
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* ===== 最後CTA區塊標題強化 ===== */

/* CTA主標題 - 更明顯 */
.fenglin-v2-final-cta .fenglin-v2-cta-title {
    font-size: 2.4rem; /* 稍微加大 */
    font-weight: 800; /* 更粗 */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6); /* 更深的陰影 */
    color: #ffffff;
    line-height: 1.3;
}

/* CTA描述文字 */
.fenglin-v2-final-cta .fenglin-v2-cta-description {
    font-size: 1.25rem;
    font-weight: 400;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    opacity: 1;
}

/* CTA中的關鍵字高亮 */
.fenglin-v2-final-cta .fenglin-v2-keyword-highlight {
    color: #FFE484; /* 亮黃色 */
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* CTA緊急聯絡文字 */
.fenglin-v2-final-cta .fenglin-v2-emergency-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-size: 1.05rem;
}

/* ===== 響應式調整 ===== */
@media (max-width: 768px) {
    /* 上半部標題手機版調整 */
    .fenglin-v2-contact-hero .fenglin-v2-contact-title {
        font-size: 2.2rem;
    }
    
    .fenglin-v2-contact-hero .fenglin-v2-contact-subtitle {
        font-size: 1.2rem;
    }
    
    /* CTA標題手機版調整 */
    .fenglin-v2-final-cta .fenglin-v2-cta-title {
        font-size: 1.8rem;
    }
    
    .fenglin-v2-final-cta .fenglin-v2-cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    /* 小手機進一步調整 */
    .fenglin-v2-contact-hero .fenglin-v2-contact-title {
        font-size: 1.8rem;
    }
    
    .fenglin-v2-final-cta .fenglin-v2-cta-title {
        font-size: 1.5rem;
    }
}