.elementor-7937 .elementor-element.elementor-element-5f2b1cc{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-3d20a60 */: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; border-bottom: 2px solid var(--primary-color); }
        h2 { font-size: 1.8rem; margin-top: 50px; margin-bottom: 20px; }
        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; }

        .feature-section {
            background-color: var(--light-bg-color);
            padding: 1px 30px 20px 30px;
            margin-top: 50px;
            border-radius: 8px;
            border-left: 5px solid var(--secondary-color);
        }

        /* Testimonials Section */
        .testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 20px; }
        .testimonial-card { background-color: #fff; border: 1px solid #e0d9cd; padding: 20px; border-radius: 8px; display: flex; flex-direction: column; }
        .testimonial-card p { font-style: italic; margin-bottom: 15px; flex-grow: 1; }
        .testimonial-card .author { font-weight: 700; text-align: right; 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 { 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: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 (min-width: 768px) {
            .testimonial-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .container { padding: 15px 20px; margin: 20px auto; }
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
        }/* End custom CSS */