﻿   
   @charset "UTF-8";
/* CSS Document */
   
   /* 全域與字型設定 */
        html {
            scroll-behavior: smooth;
        }
        body { 
            font-family: 'Noto Sans TC', sans-serif; 
            background-color: #f9f9f9;
            color: #333333;
            padding-top: 0; 
        }
        
        /* 導航欄自訂樣式 */
        .navbar-custom {
            background-color: #ffffff;
            border: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .navbar-custom .navbar-brand {
            font-weight: 900;
            color: #1e3a8a !important;
            letter-spacing: 2px;
            font-size: 24px;
        }
        .navbar-custom .navbar-nav > li > a {
            color: #555555;
            font-weight: 500;
            transition: color 0.3s;
        }
        .navbar-custom .navbar-nav > li > a:hover {
            color: #2563eb !important;
            background-color: transparent;
        }
        .nav-btn {
            padding: 8px 20px;
            margin-top: 8px;
            border-radius: 50px;
            font-weight: bold;
            background-color: #2563eb;
            color: #ffffff !important;
            border: none;
            box-shadow: 0 4px 6px rgba(37,99,235,0.2);
            transition: all 0.3s;
        }
        .nav-btn:hover {
            background-color: #1d4ed8 !important;
            box-shadow: 0 6px 12px rgba(37,99,235,0.3);
            text-decoration: none;
        }

        /* Hero 區塊自訂漸層 */
        .hero-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #0f766e 100%);
            color: #ffffff;
            padding: 80px 0;
            text-align: center;
        }
        .hero-badge {
            display: inline-block;
            background-color: #14b8a6;
            color: #ffffff;
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 18px;
            margin: 5% auto 3% auto;
            letter-spacing: 1px;
        }
        .hero-title {
            /* font-weight: 900; */
            /* font-size: 42px; */
            /* line-height: 1.5; */
            /* margin-bottom: 24px; */
        }
        .hero-title span {
            color: #facc15;
        }
        .hero-desc {
            text-align: center;
            font-weight: 300;
            font-size: 18px;
            /* max-width: 750px; */
            margin: 0 auto 30px auto;
            line-height: 1.6;
            opacity: 0.9;
        }
        .hero-btn {
            background-color: #facc15;
            color: #1e3a8a !important;
            font-weight: bold;
            font-size: 18px;
            padding: 14px 35px;
            border-radius: 50px;
            display: inline-block;
            box-shadow: 0 8px 15px rgba(250,204,21,0.2);
            transition: all 0.3s;
        }
        .hero-btn:hover {
            background-color: #eab308;
            transform: translateY(-2px);
            text-decoration: none;
        }

        /* 區塊通用設定 */
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }
        .title-line {
            width: 60px;
            height: 4px;
            margin: 0 auto 35px auto;
        }
        .bg-white-pure {
            background-color: #ffffff;
        }
        .bg-gray-light {
            background-color: #f3f4f6;
        }

        /* 為什麼關鍵區塊 */
        .why-lead-box {
            background-color: #eff6ff;
            border-left: 4px solid #2563eb;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin-top: 30px;
            color: #1e3a8a;
            font-weight: 500;
            font-size: 1.2em;
            text-align: left;
        }
        .info-text {
            color: #333;
            font-size: 1em;
            letter-spacing: 1.2px;
            margin-bottom: 8px;
        }

        /* 權威講師區塊 */
        .speaker-card {
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
        }
        .speaker-img-container {
            background-color: #ccc;
            padding: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .speaker-img {
            border-radius: 12px;
            border: 4px solid rgba(255,255,255,0.2);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            max-width: 100%;
            height: auto;
            transition: transform 0.3s;
        }
        .speaker-img:hover {
            transform: scale(1.02);
        }
        .speaker-content {
            padding: 40px;
        }
        .speaker-list li {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #333;
            list-style: none;
            position: relative;
            padding-left: 24px;
            text-align: left;
        }
        .speaker-list li::before {
            content: "✔";
            color: #2563eb;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
        }

        /* 修法亮點卡片 */
        .highlight-card {
            background-color: #f9fafb;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
            margin-bottom: 30px;
            transition: all 0.3s;
            border-top: 4px solid #2563eb;
            height: 100%;
            text-align: center;
        }
        .highlight-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            transform: translateY(-3px);
        }
        .highlight-card.border-red {
            border-top-color: #ef4444;
        }
        .card-icon {
            font-size: 36px;
            margin-bottom: 15px;
        }
        .card-title {
            font-size: 21px;
            font-weight: bold;
            margin-bottom: 12px;
            color: #333;
        }

        /* 現場講義區塊 */
        .tools-section {
            background-color: #115e59;
            color: #ffffff;
            padding: 80px 0;
        }
        .tool-item {
            margin-bottom: 25px;
        }
        .tool-num {
            color: #facc15;
            font-size: 22px;
            font-weight: bold;
            display: inline-block;
            margin-right: 10px;
            vertical-align: top;
        }
        .tool-body {
            display: inline-block;
            width: 90%;
            width: calc(100% - 35px);
        }
        .tool-title {
            color: #fde047;
            font-weight: bold;
            font-size: 1.8em;
            margin-top: 0;
            margin-bottom: 6px;
            text-align: left;
        }

        /* 憑書免費入場 */
        /* .book-card {
            background-color: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 40px;
            margin-top: 20px;
        } */
        .book-badge {
            background-color: #dbeafe;
            color: #1e40af;
            font-weight: bold;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 14px;
            display: inline-block;
            margin-bottom: 15px;
        }
        .book-img {
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            max-width: 100%;
            height: auto;
            transition: transform 0.3s;
        }
        .book-img:hover {
            transform: scale(1.03);
        }
        .feature-num {
            background-color: #2563eb;
            color: #ffffff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 4px 6px rgba(37,99,235,0.2);
            float: left;
        }
        .feature-body {
            margin-left: 48px;
        }

        /* 方案卡片 */
        .price-card {
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            transition: all 0.3s;
            position: relative;
        }
        .price-card:hover {
            border-color: #2563eb;
        }
        .price-card.featured {
            background-color: #1e3a8a;
            color: #ffffff;
            border: 2px solid #facc15;
            box-shadow: 0 10px 25px rgba(30,58,138,0.15);
        }
        .featured-badge {
            position: absolute;
            top: 0;
            right: 0;
            background-color: #facc15;
            color: #1e3a8a;
            font-size: 14px;
            font-weight: bold;
            padding: 4px 12px;
            border-radius: 0 14px 0 10px;
            letter-spacing: 1px;
        }
        .price-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #4b5563;
        }
        .price-card.featured .price-title {
            color: #ffffff;
        }
        .price-val {
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 20px;
            color: #222;
        }
        .price-card.featured .price-val {
            color: #facc15;
        }
        .price-val small {
            font-size: 14px;
            font-weight: normal;
            color: #6b7280;
        }
        .price-old {
            font-size: 13px;
            text-decoration: line-through;
            color: #9ca3af;
            margin-bottom: 15px;
        }
        .price-features {
            padding-left: 0;
            list-style: none;
            margin-bottom: 5px;
        }
        .price-features li {
            margin-bottom: 5px;
            font-size: 15px;
            text-align: left;
            color: #000;
            display: flex;
        }
        .price-card.featured .price-features li {
            color: #fff;
        }
        .price-features li span {
            color: #10b981;
            font-weight: bold;
            margin-right: 6px;
        }
        .price-card.featured .price-features li span {
            color: #facc15;
        }
        .btn-price-default {
            background-color: #e5e7eb;
            color: #374151;
            font-weight: bold;
            border-radius: 8px;
            padding: 10px;
            display: block;
            text-align: center;
            transition: all 0.3s;
        }
        .btn-price-default:hover {
            background-color: #d1d5db;
            text-decoration: none;
            color: #111827;
        }
        .btn-price-featured {
            background-color: #facc15;
            color: #1e3a8a;
            font-weight: bold;
            border-radius: 8px;
            padding: 10px;
            display: block;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .btn-price-featured:hover {
            background-color: #eab308;
            text-decoration: none;
            color: #1e3a8a;
        }
        .btn-price-blue {
            background-color: #eff6ff;
            color: #1e40af;
            font-weight: bold;
            border-radius: 8px;
            padding: 10px;
            display: block;
            text-align: center;
            transition: all 0.3s;
        }
        .btn-price-blue:hover {
            background-color: #dbeafe;
            text-decoration: none;
            color: #1e40af;
        }

        /* 報名表單 */
        .form-container {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            border: 1px solid #f3f4f6;
        }
        .form-group label {
            font-weight: bold;
            color: #4b5563;
        }
        .form-control-custom {
            height: 46px;
            border-radius: 8px;
            border: 1px solid #d1d5db;
            box-shadow: none;
            font-size: 14px;
        }
        .form-control-custom:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
        }
        .radio-box {
            border: 1px solid #e5e7eb;
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 12px;
            display: block;
            cursor: pointer;
            transition: all 0.3s;
        }
        .radio-box:hover {
            background-color: #f9fafb;
        }
        .radio-box.active-box {
            background-color: #eff6ff;
            border-color: #bfdbfe;
        }
        .radio-box input[type="radio"] {
            margin-right: 10px;
            margin-top: 2px;
            float: left;
        }
        .radio-text {
            display: block;
            margin-left: 24px;
        }
        .btn-submit {
            background-color: #2563eb;
            color: #ffffff;
            font-weight: bold;
            font-size: 18px;
            padding: 14px;
            border-radius: 8px;
            border: none;
            width: 100%;
            box-shadow: 0 4px 6px rgba(37,99,235,0.15);
            transition: all 0.3s;
        }
        .btn-submit:hover {
            background-color: #1d4ed8;
        }

        /* FAQ 常見問題 */
        .faq-group-title {
            font-weight: bold;
            color: #1e3a8a;
            margin-top: 30px;
            margin-bottom: 15px;
            letter-spacing: 1px;
            text-align: left;
        }
        .faq-panel {
            margin-bottom: 12px;
            border-radius: 8px !important;
            box-shadow: none;
            border-color: #e5e7eb;
            overflow: hidden;
        }
        .faq-panel .panel-heading {
            background-color: #ffffff !important;
            padding: 0;
        }
        .faq-btn {
            width: 100%;
            text-align: left;
            padding: 18px;
            /* font-weight: bold; */
            color: #333;
            background: none;
            border: none;
            outline: none !important;
            font-size: 1.2em;
            position: relative;
        }
        .faq-btn .arrow-icon {
            float: right;
            transition: transform 0.3s;
        }
        .faq-btn[aria-expanded="true"] {
            color: #2563eb;
        }
        .faq-btn[aria-expanded="true"] .arrow-icon {
            transform: rotate(180deg);
        }
        .faq-body {
            border-top: 1px solid #f3f4f6;
            padding: 18px;
            color: #555555;
            line-height: 1.6;
            background-color: #fafafa;
            text-align: left;
        }

        /* 頁尾設定 */
        .footer-section {
            background-color: #111827;
            color: #9ca3af;
            padding: 50px 0;
            text-align: center;
        }
        .footer-section h3 {
            color: #ffffff;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .footer-divider {
            border-top: 1px solid #374151;
            margin-top: 25px;
            padding-top: 25px;
            font-size: 13px;
        }

        /* 響應式優化微調 */
        @media (max-width: 991px) {
            .hero-title { font-size: 34px; }
            .speaker-card { flex-direction: column; }
            .speaker-img-container { width: 100%; }
            .speaker-content { width: 100%; }
            .price-card.featured { transform: none !important; }
        }
        
        @media (min-width: 992px) {
            /* 讓三張卡片等高，並使中間的卡片微突 */
            .price-flex-row {
                display: flex;
                align-items: stretch;
            }
            .price-card {
                height: 100%;
            }
            .price-card.featured {
                transform: translateY(-15px);
            }
        }


