.elementor-7977 .elementor-element.elementor-element-db83c82{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-e768e39 */: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; }
        h3 { font-size: 1.4rem; color: var(--secondary-color); margin-top: 30px; }
        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; }

        .highlight-box {
            background-color: var(--light-bg-color);
            padding: 30px;
            margin: 30px 0;
            border-left: 5px solid var(--secondary-color);
            border-radius: 0 8px 8px 0;
        }

        /* Instructor Profile Section */
        .instructor-team { margin-top: 40px; }
        .instructor-profile {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }
        .instructor-profile:last-child { border-bottom: none; }
        .instructor-photo { text-align: center; }
        .instructor-photo img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid var(--highlight-color);
        }
        .instructor-bio h3 { margin-top: 0; text-align: center; }
        .instructor-bio ul { padding-left: 20px; list-style-type: '⭐'; }
        
        @media (min-width: 768px) {
            .instructor-profile { grid-template-columns: 150px 1fr; }
            .instructor-bio h3 { text-align: left; }
        }

        /* 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 (max-width: 768px) {
            .container { padding: 15px 20px; margin: 20px auto; }
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
        }/* End custom CSS */