.elementor-10237 .elementor-element.elementor-element-d5083e4{--display:flex;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-d0cd0f6 */.wordpress-article {
            font-family: 'PingFang TC', 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
            line-height: 1.7;
            color: #333;
            margin: 0 auto; 
            width: 80%; /* 寬度設定為 80% */
            min-width: 300px; /* 最小寬度避免手機過窄 */
            padding: 20px 0;
            word-wrap: break-word;
        }

        /* 標題樣式 */
        .wordpress-article h1 { color: #0056b3; text-align: center; margin-bottom: 25px; font-size: 2.2em; line-height: 1.3; font-weight: 700; }
        .wordpress-article h2 { color: #007bff; border-bottom: 2px solid #007bff; padding-bottom: 8px; margin-top: 40px; margin-bottom: 20px; font-size: 1.7em; font-weight: 600; }
        .wordpress-article h3 { color: #17a2b8; margin-top: 30px; margin-bottom: 12px; font-size: 1.4em; font-weight: 600; }
        .wordpress-article p { margin-bottom: 18px; font-size: 1.05em; }

        /* 核心優勢區塊 (可視為圖表替代) */
        .advantage-list {
            padding: 10px;
            border: 1px dashed #ced4da;
            border-radius: 5px;
            margin: 20px 0;
        }
        .advantage-list h3 {
            border-left: 4px solid #28a745;
            padding-left: 10px;
            margin-top: 15px;
            margin-bottom: 5px;
        }

        /* Q&A 收合樣式 */
        .accordion-container {
            margin-top: 30px;
            border-top: 2px solid #e0e0e0;
        }

        .accordion-item {
            border: 1px solid #ddd;
            border-top: none;
            margin-bottom: -1px; /* 讓邊框重疊，視覺上更緊湊 */
        }
        .accordion-item:last-child {
            border-radius: 0 0 5px 5px;
        }
        .accordion-item:first-child {
            border-top: 1px solid #ddd;
            border-radius: 5px 5px 0 0;
        }

        .accordion-header {
            background-color: #f7f7f7;
            color: #333;
            cursor: pointer;
            padding: 15px 20px;
            width: 100%;
            border: none;
            text-align: left;
            outline: none;
            transition: background-color 0.3s ease;
            position: relative;
        }
        .accordion-header h3 {
            margin: 0;
            color: #007bff; /* 問題顏色 */
            font-size: 1.1em;
            display: inline-block;
            transition: color 0.3s ease;
        }
        .accordion-header:hover {
            background-color: #e9e9e9;
        }

        /* 加號/減號圖示 (使用 CSS 偽元素模擬) */
        .accordion-header::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5em;
            color: #007bff;
            transition: transform 0.3s ease;
        }
        .accordion-header.active::after {
            content: '-';
            transform: translateY(-50%) rotate(0deg);
        }

        .accordion-content {
            padding: 0 20px;
            background-color: white;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        }
        .accordion-content p {
            padding: 10px 0 20px 0;
            margin-bottom: 0;
            color: #555;
        }

        /* 聯絡資訊 */
        .contact-info-widget {
            background-color: #e9ecef;
            border-left: 5px solid #007bff;
            border-radius: 5px;
            padding: 20px;
            margin-top: 40px;
            margin-bottom: 40px;
        }
        .cta-highlight {
            background-color: #fff3cd;
            color: #856404;
            padding: 15px 20px;
            border-left: 5px solid #ffc107;
            margin-top: 35px;
            margin-bottom: 35px;
            font-weight: bold;
            font-size: 1.15em;
            border-radius: 5px;
            text-align: center;
        }

        /* 響應式調整 */
        @media (max-width: 992px) {
            .wordpress-article {
                width: 90%; /* 螢幕縮小時，寬度放大到 90% */
            }
        }
        @media (max-width: 576px) {
            .wordpress-article {
                width: 95%;
                padding: 10px 0;
            }
            .accordion-header h3 {
                font-size: 1em;
            }
        }/* End custom CSS */