.elementor-10537 .elementor-element.elementor-element-516c7f5{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-bd585dd */:root {
            --primary-color: #005a9e; /* 佳津品牌深藍色 */
            --secondary-color: #00b0f0; /* 佳津品牌淺藍色 */
            --text-color: #333333;
            --heading-color: #003366;
            --background-color: #f8f9fa;
            --white-color: #ffffff;
            --border-radius: 8px;
            --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        body {
            font-family: 'Noto Sans TC', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background-color: var(--background-color);
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 900px;
            margin: 20px auto;
            padding: 20px 30px;
            background-color: var(--white-color);
            box-shadow: var(--box-shadow);
            border-radius: var(--border-radius);
        }

        h1, h2, h3 {
            color: var(--heading-color);
            font-weight: 700;
            line-height: 1.4;
        }

        h1 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        h2 {
            font-size: 1.8rem;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary-color);
        }
        
        h3 {
            font-size: 1.4rem;
            margin-top: 30px;
            color: var(--primary-color);
        }

        p {
            font-size: 1.1rem;
            margin-bottom: 1.2em;
        }

        strong {
            color: var(--primary-color);
            font-weight: 700;
        }

        .image-container {
            margin: 30px 0;
            text-align: center;
        }

        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .image-caption {
            font-size: 0.9rem;
            color: #777;
            margin-top: 10px;
            font-style: italic;
        }

        ul {
            list-style-type: none;
            padding-left: 0;
        }

        ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }

        ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        blockquote {
            background-color: #eaf6ff;
            border-left: 5px solid var(--primary-color);
            margin: 30px 0;
            padding: 20px 30px;
            font-size: 1.1rem;
            font-style: italic;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        
        blockquote footer {
            text-align: right;
            margin-top: 15px;
            font-style: normal;
            font-weight: 500;
            color: var(--heading-color);
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white-color);
            padding: 40px;
            text-align: center;
            margin: 40px -30px -20px -30px; /* 延伸至容器邊緣 */
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }

        .cta-section h2 {
            color: var(--white-color);
            border-bottom: none;
            margin-top: 0;
            font-size: 2rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--white-color);
            color: var(--primary-color);
            padding: 15px 35px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }
        
        .contact-info {
            margin-top: 30px;
            font-size: 1rem;
        }
        
        .contact-info a {
            color: var(--white-color);
            text-decoration: none;
            margin: 0 15px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
                margin: 10px;
            }
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.2rem; }
            .cta-section {
                margin: 40px -15px -15px -15px;
                padding: 30px 20px;
            }
        }/* End custom CSS */