﻿@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-color: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6f 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        h1 {
            font-size: 2.8em;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .subtitle {
            font-size: 1.3em;
            margin-bottom: 25px;
            opacity: 0.95;
            font-weight: 300;
        }
        
        .cta-header {
            display: inline-block;
            background-color: #ff6b35;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255,107,53,0.3);
        }
        
        .cta-header:hover {
            background-color: #ff5722;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,107,53,0.4);
        }
        
        .intro-section {
            background: white;
            padding: 70px 20px;
            margin: -30px 0 0 0;
            border-radius: 20px 20px 0 0;
            position: relative;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
        }
        
        h2 {
            color: #2c5aa0;
            font-size: 2.2em;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b35, #2c5aa0);
            border-radius: 2px;
        }
        
        .intro-text {
            font-size: 1.15em;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 30px;
            color: #555;
            line-height: 2;
        }
        
        .services-section {
            padding: 70px 20px;
            background-color: #f8f9fa;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            border-top: 4px solid #2c5aa0;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .service-card h3 {
            color: #2c5aa0;
            font-size: 1.5em;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.8;
            font-size: 1.05em;
        }
        
        .advantages-section {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6f 100%);
            color: white;
            padding: 70px 20px;
        }
        
        .advantages-section h2 {
            color: white;
        }
        
        .advantages-section h2::after {
            background: linear-gradient(90deg, #ff6b35, white);
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .advantage-item {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }
        
        .advantage-item:hover {
            background: rgba(255,255,255,0.15);
            transform: scale(1.05);
        }
        
        .advantage-item h3 {
            font-size: 1.4em;
            margin-bottom: 12px;
            color: #ffd54f;
        }
        
        .advantage-item p {
            opacity: 0.95;
            line-height: 1.7;
        }
        
        .cta-section {
            background: white;
            padding: 80px 20px;
            text-align: center;
        }
        
        .cta-box {
            background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
            color: white;
            padding: 50px;
            border-radius: 20px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 10px 40px rgba(255,107,53,0.3);
        }
        
        .cta-box h2 {
            color: white;
            font-size: 2em;
            margin-bottom: 20px;
        }
        
        .cta-box h2::after {
            background: white;
        }
        
        .cta-box p {
            font-size: 1.2em;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .contact-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .contact-btn {
            background: white;
            color: #ff6b35;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .contact-btn:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }
        
        .contact-info {
            background: #1e3a6f;
            color: white;
            padding: 50px 20px;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .info-item {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #ff6b35;
        }
        
        .info-item h3 {
            color: #ffd54f;
            margin-bottom: 12px;
            font-size: 1.2em;
        }
        
        .info-item p {
            opacity: 0.95;
            line-height: 1.8;
        }
        
        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 30px 20px;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }
            
            h2 {
                font-size: 1.8em;
            }
            
            .services-grid,
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-buttons {
                flex-direction: column;
            }
        }