﻿@charset "utf-8";   




        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Microsoft JhengHei", "PingFang TC", sans-serif;
            line-height: 1.8;
            color: #333;
            background: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
            color: white;
            padding: 60px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }
        
        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }
        
        .subtitle {
            font-size: 1.2em;
            opacity: 0.95;
            margin-bottom: 30px;
        }
        
        .header-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .header-feature {
            background: rgba(255,255,255,0.15);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.95em;
            backdrop-filter: blur(10px);
        }
        
        .intro-section {
            background: white;
            padding: 60px 0;
            margin-top: -40px;
            position: relative;
            z-index: 2;
            border-radius: 20px 20px 0 0;
        }
        
        .intro-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .intro-content h2 {
            color: #2c5282;
            font-size: 2em;
            margin-bottom: 25px;
        }
        
        .intro-content p {
            font-size: 1.1em;
            color: #555;
            margin-bottom: 15px;
        }
        
        .services-grid {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.2em;
            color: #2c5282;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #2c5282, #4299e1);
            border-radius: 2px;
        }
        
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(44,82,130,0.15);
            border-color: #4299e1;
        }
        
        .service-icon {
            font-size: 3em;
            margin-bottom: 20px;
            display: block;
        }
        
        .service-card h3 {
            color: #2c5282;
            font-size: 1.5em;
            margin-bottom: 15px;
        }
        
        .service-card .price-tag {
            display: inline-block;
            background: #e6f4ff;
            color: #0066cc;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 20px;
            font-size: 1.05em;
        }
        
        .features-list {
            list-style: none;
            margin: 20px 0;
        }
        
        .features-list li {
            padding: 8px 0;
            color: #555;
            position: relative;
            padding-left: 25px;
        }
        
        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #48bb78;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            margin-top: 10px;
        }
        
        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(44,82,130,0.3);
        }
        
        .why-choose {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            padding: 60px 0;
        }
        
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .reason-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .reason-card .icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            display: block;
        }
        
        .reason-card h4 {
            color: #2c5282;
            font-size: 1.2em;
            margin-bottom: 10px;
        }
        
        .contact-section {
            background: #2c5282;
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .contact-item {
            text-align: center;
        }
        
        .contact-item .icon {
            font-size: 2em;
            margin-bottom: 10px;
            display: block;
        }
        
        .contact-item h4 {
            font-size: 1.1em;
            margin-bottom: 8px;
            opacity: 0.9;
        }
        
        .contact-item a {
            color: white;
            text-decoration: none;
            font-size: 1.3em;
            font-weight: 600;
            transition: opacity 0.3s;
        }
        
        .contact-item a:hover {
            opacity: 0.8;
        }
        
        footer {
            background: #1a365d;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-info {
            opacity: 0.9;
            line-height: 2;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8em;
            }
            
            .grid {
                grid-template-columns: 1fr;
            }
            
            .header-features {
                gap: 15px;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 30px;
            }
        }