.elementor-6196 .elementor-element.elementor-element-96f13b8{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-3afeb9d *//* ========== CSS Reset & Basic Styles ========== */
        :root {
            --primary-color: #3a2e28; /* 深咖啡色 */
            --secondary-color: #c59d5f; /* 金黃色/乳酪色 */
            --background-color: #fdfaf6; /* 溫暖的米白色 */
            --text-color: #4a4a4a; /* 深灰色文字 */
            --header-font: 'Playfair Display', serif;
            --body-font: 'Noto Sans TC', sans-serif;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--body-font);
            line-height: 1.8;
            color: var(--text-color);
            background-color: var(--background-color);
            font-size: 16px;
        }

        /* ========== Layout & Container ========== */
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        /* ========== Header & Hero Image ========== */
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 40px 20px;
            background-color: #fff;
            border-bottom: 1px solid #eee;
        }

        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        /* ========== Typography & Content Styling ========== */
        h2, h3 {
            font-family: var(--header-font);
            color: var(--primary-color);
            line-height: 1.3;
            margin-bottom: 0.8em;
            margin-top: 1.5em;
        }

        
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.3em;
        }

        h3 {
            font-size: 1.5rem;
            color: #6d5f54;
        }

        p {
            margin-bottom: 1.5em;
        }

        a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }

        strong {
            color: var(--primary-color);
            font-weight: 700;
        }

        ul {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 1.5em;
        }

        ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 0.8em;
        }

        ul li::before {
            content: '🧀'; /* 使用乳酪 emoji 作為項目符號 */
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.2em;
        }

        /* ========== Responsive Design ========== */
        @media (max-width: 768px) {
          
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.3rem; }
            .hero-image { height: 300px; }
            .container { padding: 15px; }
        }

        @media (max-width: 480px) {
            body { font-size: 15px; }
            h1 { font-size: 1.8rem; }
            .hero-image { height: 200px; }
        }/* End custom CSS */