* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft JhengHei', '微軟正黑體', Arial, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: #f9f9f9;
            color: #222;
            line-height: 1.7;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 頂部導航 - 保留原樣 */
        header {
            background-color: white;
            box-shadow: 0 5px 10px rgba(0, 183, 255, 0.377);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 20px;
            font-weight: bold;
            color: #333;
            gap: 10px;
        }

        .profile-pic {
            width: 50px;
            height: 50px;
            border-radius: 30%;
            object-fit: cover;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 25px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #3498db;
        }

        /* 首頁區塊 - 保留原樣 */
        #home {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
            margin-top: 90px;
        }
        
        .hero-content {
            max-width: 500px;
        }
        
        .hero-content h1 {
            font-size: 46px;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
            margin-top: 90px;
            font-weight: bold;
        }

        .glow-btn {
            box-shadow: 0 0 15px rgba(52, 152, 219, 0.8), 0 0 25px rgba(52, 152, 219, 0.6);
            animation: glow 1.5s ease-in-out infinite alternate;
            background-color: #3498db;
        }

        @keyframes glow {
            0% {
                box-shadow: 0 0 8px rgba(52, 152, 219, 0.5), 0 0 16px rgba(52, 152, 219, 0.3);
            }       
            100% {
                box-shadow: 0 0 20px rgba(52, 152, 219, 0.9), 0 0 30px rgba(52, 152, 219, 0.6);
            }
        } 

        .btn:hover {
            background-color: #2980b9;
        }

        ::selection {
            background: white;
            color: #ff7f00;
        }

        /* 新聞版面樣式 */
        .news-container {
            max-width: 900px;
            margin: auto;
            padding: 20px;
            background-color: #fff;
            margin-top: 70px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .news-header {
            background-color: #ffffff;
            border-bottom: 3px solid #3498db;
            padding: 30px 0;
            text-align: center;
            margin-bottom: 30px;
        }

        .news-header h1 {
            font-size: 32px;
            color: #222;
            margin-bottom: 10px;
        }

        .meta {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }

        .news-category {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 15px;
        }

    .news-banner {
        width: 100%;
        margin: 30px 0;
        border-radius: 15px;
        overflow: visible; /* ✅ 改成 visible，讓 caption 可以顯示 */
        position: relative;
    }


        .img-caption {
            font-size: 14px;
            color: #555;
            margin-top: 10px;
            padding-left: 4px;
            text-align: left;
            font-style: italic;
            opacity: 0.85;
        }

        .news-banner-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            border-radius: 20px / 12px; /* 橢圓邊角：水平20px，垂直12px */

        }

        .news-banner:hover .news-banner-img {
            transform: scale(1.05);
        }

        .news-article {
            padding: 30px;
            line-height: 1.8;
        }

        .news-article h2 {
            color: #2c3e50;
            font-size: 24px;
            margin: 30px 0 20px 0;
            border-left: 4px solid #3498db;
            padding-left: 15px;
        }

        .news-article p {
            margin-bottom: 20px;
            font-size: 17px;
            text-indent: 2em;
        }

        .quote-box {
            background-color: #f8f9fa;
            border-left: 4px solid #3498db;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        .quote-box p {
            font-style: italic;
            color: #555;
            text-indent: 0;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .news-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(45deg, #3498db, #2980b9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .card-content {
            padding: 20px;
        }

        .card-title {
            font-size: 18px;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .card-meta {
            font-size: 12px;
            color: #666;
            margin-bottom: 15px;
        }

        .card-excerpt {
            color: #555;
            line-height: 1.6;
            text-indent: 0;
        }

        /* 頁尾 - 保留原樣 */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 30px 0;
            text-align: center;
            margin-top: 90px;
        }
        
        .social-links {
            margin: 20px 0;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            margin: 0 10px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 18px;
            line-height: 40px;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: #3498db;
        }

        /* 響應式設計 */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 32px;
            }
                section {
                padding: 100px 0; /* 手機上改成比較合理的間距 */
            }
            .news-header h1 {
                font-size: 24px;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                display: none;
            }

            .news-container {
                margin: 20px 10px;
                padding: 15px;
            }
        }