﻿@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-color: #f8f9fa;
        }
        
        .header {
            background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }
        
        .header h1 {
            font-size: 2.5em;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .header p {
            font-size: 1.1em;
            opacity: 0.95;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .breadcrumb {
            background: white;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 8px;
            font-size: 0.9em;
            color: #666;
        }
        
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .article-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .article-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
        }
        
        .article-content {
            padding: 25px;
        }
        
        .article-category {
            display: inline-block;
            background: #e3f2fd;
            color: #1976d2;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85em;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .article-card h2 {
            font-size: 1.4em;
            color: #2c5f8d;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        
        .article-excerpt {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.95em;
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
            font-size: 0.85em;
            color: #999;
        }
        
        .read-more {
            color: #2c5f8d;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .read-more:hover {
            color: #1a3a52;
        }
        
        .featured-article {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            margin-bottom: 20px;
        }
        
        .featured-article .article-image {
            height: 100%;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
            color: white;
            padding: 50px;
            border-radius: 15px;
            text-align: center;
            margin: 60px 0;
        }
        
        .cta-section h3 {
            font-size: 2em;
            margin-bottom: 20px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .cta-btn {
            background: white;
            color: #2c5f8d;
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s;
            display: inline-block;
        }
        
        .cta-btn:hover {
            transform: scale(1.05);
        }
        
        .contact-info {
            background: #fff3cd;
            border-left: 5px solid #ffc107;
            padding: 20px;
            margin: 30px 0;
            border-radius: 8px;
        }
        
        .contact-info h4 {
            color: #856404;
            margin-bottom: 15px;
        }
        
        .contact-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        
        .contact-item {
            color: #856404;
        }
        
        .contact-item strong {
            display: block;
            margin-bottom: 5px;
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8em;
            }
            
            .article-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-article {
                grid-template-columns: 1fr;
            }
            
            .cta-section {
                padding: 30px 20px;
            }
        }