.elementor-7991 .elementor-element.elementor-element-e41f41c{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-bde8462 */:root {
            --primary-color: #6F4E37; /* Coffee Brown */
            --secondary-color: #A0522D; /* Sienna */
            --background-color: #FDFBF5; /* Creamy White */
            --text-color: #3D3D3D; /* Dark Gray */
            --header-color: #2c2520;
            --light-bg-color: #F5F1E9;
            --highlight-color: #D2B48C; /* Tan */
        }

        body {
            font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft JhengHei", "PingFang TC", Roboto, sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background-color: var(--background-color);
            margin: 0;
            padding: 0;
            font-size: 17px;
        }

        .container {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px 40px;
            background-color: #fff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-radius: 12px;
        }

        h1, h2, h3 { color: var(--header-color); line-height: 1.4; font-weight: 700; }
        h1 { font-size: 2.3rem; text-align: center; margin-bottom: 20px; padding-bottom: 20px; }
        h2 { font-size: 1.8rem; margin-top: 50px; margin-bottom: 20px; text-align: center; }
        p { margin-bottom: 1.2em; }
        strong, b { color: var(--primary-color); font-weight: 700; }

        .article-image { margin: 40px 0; text-align: center; }
        .article-image img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        .article-image figcaption { margin-top: 10px; font-size: 0.9rem; color: #777; font-style: italic; }

        /* Q&A Section */
        .qa-section { margin-top: 30px; }
        .qa-item {
            margin-bottom: 25px;
            border-bottom: 1px solid #eee;
            padding-bottom: 25px;
        }
        .qa-item:last-child { border-bottom: none; }
        .question {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        .question::before {
            content: 'Q' counter(qa-counter) '.';
            counter-increment: qa-counter;
            font-size: 1.5rem;
            margin-right: 10px;
            color: var(--primary-color);
        }
        .answer {
            padding-left: 45px;
        }
        .answer::before {
            content: 'A.';
            font-weight: 700;
            margin-left: -45px;
            margin-right: 10px;
            color: var(--header-color);
        }
        
        body { counter-reset: qa-counter; }

        /* Contact Form / Link Section */
        .more-questions {
            background-color: var(--light-bg-color);
            padding: 30px;
            margin-top: 50px;
            text-align: center;
            border-radius: 8px;
        }
        .contact-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: #fff;
            padding: 12px 25px;
            text-decoration: none;
            font-weight: 700;
            border-radius: 50px;
            margin-top: 15px;
            transition: background-color 0.3s ease;
        }
        .contact-button:hover {
            background-color: var(--secondary-color);
        }

        /* CTA Section */
        .cta-section { text-align: center; margin-top: 50px; padding: 30px; border-radius: 8px; background-color: var(--header-color); color: #fff; }
        .cta-section h2 { color: #fff; }
        .cta-button-final { display: inline-block; background-color: var(--secondary-color); color: #fff; padding: 15px 30px; text-decoration: none; font-size: 1.2rem; font-weight: 700; border-radius: 50px; transition: all 0.3s ease; margin-top: 15px; border: 2px solid #fff; cursor: pointer; }
        .cta-button-final:hover { background-color: #fff; color: var(--secondary-color); transform: translateY(-3px); }

        .contact-section { text-align: center; margin-top: 50px; padding: 30px; border-radius: 8px; background-color: var(--light-bg-color); }
        .contact-section p { margin: 8px 0; font-size: 1.1rem; }
        .contact-section a { color: var(--secondary-color); text-decoration: none; font-weight: 500; }
        .contact-section a:hover { text-decoration: underline; }

        @media (max-width: 768px) {
            .container { padding: 15px 20px; margin: 20px auto; }
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
        }/* End custom CSS */