﻿@charset "utf-8";  


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft JhengHei', Arial, sans-serif;
            line-height: 1.8;
            color: #333;
            background: #f8f9fa;
        }
        
        .header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .header h1 {
            font-size: 2.5em;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .header p {
            font-size: 1.2em;
            opacity: 0.95;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .intro-section {
            background: white;
            padding: 50px 40px;
            margin: 40px 0;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        
        .intro-section h2 {
            color: #1e3c72;
            font-size: 2em;
            margin-bottom: 25px;
            border-left: 5px solid #2a5298;
            padding-left: 20px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .feature-card {
            background: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.15);
        }
        
        .feature-card h3 {
            color: #2a5298;
            font-size: 1.5em;
            margin-bottom: 15px;
        }
        
        .process-section {
            background: white;
            padding: 50px 40px;
            margin: 40px 0;
            border-radius: 12px;
        }
        
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 40px;
        }
        
        .step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 20px;
            position: relative;
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            font-weight: bold;
            margin: 0 auto 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        
        .step h4 {
            color: #1e3c72;
            margin-bottom: 10px;
            font-size: 1.3em;
        }
        
        .comparison-table {
            width: 100%;
            margin: 40px 0;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .comparison-table th {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 20px;
            text-align: left;
            font-size: 1.1em;
        }
        
        .comparison-table td {
            padding: 18px 20px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .comparison-table tr:hover {
            background: #f8f9fa;
        }
        
        .highlight {
            color: #2a5298;
            font-weight: bold;
        }
        
        .services-section {
            background: white;
            padding: 50px 40px;
            margin: 40px 0;
            border-radius: 12px;
        }
        
        .service-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .service-item {
            padding: 25px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #2a5298;
            transition: all 0.3s ease;
        }
        
        .service-item:hover {
            background: #e9ecef;
            border-left-width: 6px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 60px 40px;
            margin: 40px 0;
            border-radius: 12px;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.2em;
            margin-bottom: 25px;
        }
        
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
        }
        
        .contact-item {
            background: rgba(255,255,255,0.15);
            padding: 25px 35px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }
        
        .contact-item h4 {
            margin-bottom: 10px;
            font-size: 1.2em;
        }
        
        .contact-item a {
            color: white;
            text-decoration: none;
            font-size: 1.3em;
            font-weight: bold;
        }
        
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 40px 0;
            padding: 30px;
            background: white;
            border-radius: 12px;
        }
        
        .badge {
            text-align: center;
            padding: 20px;
        }
        
        .badge-icon {
            font-size: 3em;
            margin-bottom: 10px;
        }
        
        .footer {
            background: #1e3c72;
            color: white;
            padding: 40px 20px;
            text-align: center;
            margin-top: 60px;
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8em;
            }
            
            .process-steps {
                flex-direction: column;
            }
            
            .comparison-table {
                font-size: 0.9em;
            }
            
            .contact-info {
                flex-direction: column;
            }
        }