
        /* --- 极致紧凑、宽屏文本版式 --- */
        .uee-guidance-hero {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            /* 压缩上下空白空间 */
            padding: 40px 5%; 
            text-align: center;
            color: #111827;
        }

        .uee-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* 顶部淡紫色微标 */
        .uee-hero-badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            background-color: #EEF2FF; /* 淡蓝紫色 */
            color: #6366F1; /* 匹配图中颜色 */
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .uee-hero-badge::before {
            content: '✨'; 
            margin-right: 8px;
            font-size: 12px;
        }

        /* 主标题：极致紧缩行距 */
        .uee-hero-title {
            font-size: clamp(32px, 5vw, 64px);
            font-weight: 800;
            line-height: 1.05;
            margin: 0 0 20px 0;
            letter-spacing: -2px;
            color: #0B1221;
        }

        .uee-hero-title span {
            color: #5FC0C1; /* 匹配图中青色 */
        }

        /* 描述文字：加宽处理，使其在PC端呈现为2行 */
        .uee-hero-p {
            font-size: 19px;
            color: #4b5563;
            line-height: 1.45;
            /* 设定宽度：1000px 在 PC 端通常能让此段文字刚好排成 2 行 */
            max-width: 1000px; 
            margin: 0 auto 30px auto;
            letter-spacing: -0.2px;
        }

        /* 按钮：匹配图中样式与阴影 */
        .uee-hero-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #5FC0C1;
            color: #ffffff;
            padding: 16px 36px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(95, 192, 193, 0.3);
        }

        .uee-hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(95, 192, 193, 0.4);
            background-color: #52b1b2;
        }

        /* 按钮内的箭头图标 */
        .uee-hero-btn::after {
            content: '→';
            margin-left: 10px;
            font-size: 20px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .uee-hero-btn:hover::after {
            transform: translateX(5px);
        }

        /* 响应式适配 */
        @media (max-width: 1024px) {
            .uee-hero-p { max-width: 90%; } /* 平板端略微收窄 */
        }
        
        @media (max-width: 768px) {
            .uee-guidance-hero { padding: 30px 5%; }
            .uee-hero-title { font-size: 30px; }
            .uee-hero-p { font-size: 16px; margin-bottom: 24px; text-align: center; }
            .uee-hero-btn { width: 100%; max-width: 280px; }
        }
    