
        /* 整体文章样式 */
        .article-container {
            font-family: 'Arial', sans-serif;
            line-height: 1.8;
            color: #333;
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
        }

        /* 标题样式 */
        .article-title {
            font-size: 2.2em;
            color: #0056b3; /* 深蓝色，专业且醒目 */
            margin-bottom: 20px;
            font-weight: bold;
            line-height: 1.3;
        }

        /* 段落样式 */
        .article-body p {
            margin-bottom: 1.5em;
            font-size: 1.1em;
        }

        /* 小标题样式 */
        .article-subtitle {
            font-size: 1.6em;
            color: #e64946; /* 红色，用于强调和吸引注意力 */
            margin-top: 2em;
            margin-bottom: 1em;
            font-weight: 600;
            border-left: 4px solid #e64946;
            padding-left: 15px;
        }

        /* 强调文本样式 */
        .article-body strong {
            color: #0056b3;
            font-weight: 700;
        }

        /* 服务列表容器 */
        .services-list {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 25px;
            margin: 25px 0;
        }

        /* 服务列表标题 */
        .services-list h3 {
            color: #333;
            margin-top: 0;
            margin-bottom: 15px;
        }

        /* 服务列表项 */
        .services-list ul {
            padding-left: 20px;
        }
        .services-list li {
            margin-bottom: 10px;
        }

        /* 行动号召（CTA）部分样式 */
        .cta-section {
            background-color: #0056b3;
            color: white;
            text-align: center;
            padding: 30px;
            border-radius: 8px;
            margin-top: 40px;
        }
        .cta-section h2 {
            margin-top: 0;
            margin-bottom: 15px;
        }
        .cta-button {
            display: inline-block;
            background-color: #e64946;
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            margin-top: 15px;
            transition: background-color 0.3s ease;
        }
        .cta-button:hover {
            background-color: #cc3c39;
        }
    