﻿@charset "utf-8";
/* CSS Document */



/* 
20260518 add */



        /* 基礎重置與全域設定 */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Noto Sans TC', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f4f7f6;
        }
        h1, h2, h3 {
            color: #2c3e50;
        }
        a {
            text-decoration: none;
        }

        /* 主視覺區塊 (Hero Section) */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?q=80&w=2070&auto=format&fit=crop') center/cover;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }
        .hero h1 {
            font-family: 'Ma Shan Zheng', cursive; /* 手寫風格大標 */
            font-size: 4em;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        /* 內容容器 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            /* padding: 40px 20px; */
        }

        /* 新加入的開場引言區塊 */
        .intro-text {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-top: -80px; /* 往上提，與背景圖重疊產生層次感 */
            margin-bottom: 50px;
            position: relative;
            z-index: 10;
            border-top: 5px solid #3498db;
        }
        .intro-text p {
            font-size: 1.15em;
            color: #444;
            margin-bottom: 15px;
        }
        .intro-text .highlight {
            color: #e67e22;
            font-weight: bold;
            font-size: 1.25em;
        }

        /* 新聞區塊：四個區塊排版 */
        .news-section {
            /* margin-bottom: 60px; */
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .news-card {
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            border-top: 3px solid #2980b9;
        }
        .news-card h3 {
            font-size: 1.5em;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2980b9;
            letter-spacing: 0px;
        }
        .news-card p {
            font-size: 1em;
            color: #555;
            flex-grow: 1;
            margin-bottom: 0;
        }
        .btn {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            text-align: center;
            font-weight: bold;
            transition: background 0.3s;
        }
        .btn:hover {
            background-color: #2980b9;
        }

     
        .why-now-section h2 {
            text-align: center;
            font-size: 2em;
            font-weight: 600;
            margin-bottom: 40px;
            color: #333;
            border-bottom: 2px solid #eee;
            padding-bottom: 15px;
        }
        .reason-block {
            margin-bottom: 50px;
        }
        .reason-block h3 {
            font-size: 1.5em;
            border-left: 5px solid #e67e22;
            padding-left: 15px;
            margin-bottom: 15px;
            color: #333;
        }

        /* 表格樣式 */
        .table-responsive {
            overflow-x: auto;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95em;
            /* min-width: 600px; */
        }
        table caption {
            font-size: 1.2em;
            margin-bottom: 10px;
            color: #2c3e50;
            text-align: left;
        }
        table th, table td {
            border: 1px solid #ddd;
            padding: 15px;
            text-align: center;
        }
        table th {
            background-color: #f2f6f8;
            font-weight: bold;
            color: #2c3e50;
        }
        table tr:nth-child(even) {
            background-color: #fafafa;
        }
        table tr:hover {
            background-color: #f1f1f1;
        }
        .source-link {
            font-size: 0.95em;
            color: #7f8c8d;
            margin-top: 10px;
            display: inline-block;
        }
        .source-link a {
            color: #3498db;
            text-decoration: underline;
            font-size: 1.2em;
        }

        /* 下一步行動 (CTA) 區塊 */
        .cta-section {
            /* background: #2c3e50; */
            color: white;
            padding: 50px;
            /* border-radius: 12px; */
            text-align: center;
            margin-top: 60px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .cta-section h2 {
            color: #f1c40f;
            margin-bottom: 20px;
            font-size: 3em;
        }
        .cta-list {
            text-align: left;
            display: inline-block;
            margin-bottom: 40px;
            background: rgb(0 0 0 / 70%);
            padding: 30px;
            border-radius: 8px;
        }
        .cta-list li {
            margin-bottom: 15px;
            list-style: none;
            font-size: 1.15em;
            line-height: 1.5;
        }
        .cta-list li strong {
            color: #f1c40f;
        }
        .cta-list li::before {
            content: "✔ ";
            color: #f1c40f;
            font-weight: bold;
        }
        .line-btn {
            background: #00b900;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.3em;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 185, 0, 0.3);
        }
        .line-btn:hover {
            background: #009900;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 185, 0, 0.4);
        }

        /* 容器設定 */
        .cta-container {
            display: flex;            /* 啟動彈性佈局 */
            flex-direction: column;   /* 讓文字和按鈕上下排列 */
            align-items: center;      /* 水平居中所有內容 */
            justify-content: center;  /* 垂直方向輔助（視需要） */
            width: 100%;             /* 佔滿父層寬度 */
            text-align: center;       /* 確保文字本身也是置中的 */
            padding: 20px 0;          /* 增加上下間距（選填） */
        }

        /* 按鈕基本樣式設定（確保按鈕外觀完整） */
        .line-btn {
            display: inline-block;
            padding: 2% 5%;
            background-color: #00b900; /* LINE 綠色範例 */
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }

        /* ================= 新增：上榜生心得區塊樣式 ================= */
        .testimonials-section {
            margin-top: 60px;
        }
        .testimonials-section h2 {
            text-align: center;
            font-size: 2.2em;
            margin-bottom: 40px;
            color: #2c3e50;
            border-bottom: 2px solid #eee;
            padding-bottom: 15px;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        .testimonial-card {
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border-top: 3px solid #e67e22; /* 橘黃色點綴，區隔新聞的藍色 */
            display: flex;
            flex-direction: column;
            min-height: 500px;
        }
      
        .testimonial-card .author {
            font-size: 1em;
            font-weight: bold;
            color: #7f8c8d;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
        }
        .testimonial-card p {
            font-size: 1em;
            color: #555;
            line-height: 1.6;
        }


        .news-card a{
          font-size: 1.2em;
        }



@media (min-width: 768px) {

       /* 為什麼要現在考 區塊 */
        .why-now-section {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }


}



@media (max-width: 768px) {

       /* 為什麼要現在考 區塊 */
        .why-now-section {
            background: #fff;
            padding: 1%;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
}