
.qa-list-container {
    margin-top: 40px;
}
.qa-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    text-decoration: none !important;
    
    /* 手机关键设置：高度自动 */
    height: auto;
}
.qa-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #ec6a34;
}

.qa-icon-box {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(236, 106, 52, 0.1);
    color: #ec6a34;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin-right: 20px;
}

.qa-content-box {
    flex-grow: 1;
}
.qa-title {
    font-size: 18px;
    font-weight: 600;
    color: #02185a;
    margin: 0 0 8px 0;
    line-height: 1.4;
    
    /* 手机关键设置：不限制行数，不强制高度，直接全部显示 */
    min-height: 0;
    -webkit-line-clamp: unset;
    display: block;
}
.qa-card:hover .qa-title {
    color: #ec6a34;
}
.qa-snippet {
    font-size: 14px;
    line-height: 24px;
    color: #272626;
    margin: 0;
    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;

}
.qa-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}
.qa-card:hover .qa-arrow {
    color: #ec6a34;
    right: 15px;
}

.cta-box {
    background: linear-gradient(135deg, #11235a 0%, #11235a 100%);
    /*border-radius: 8px;*/
    padding: 40px;
    text-align: center;
    color: #fff;
    margin-top: 50px;
}
 .cta-box p {
    color: #fff;
}
.cta-box h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
}
.cta-btn {
    display: inline-block;
    background: #ec6a34;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
    text-decoration: none;
}
.cta-btn:hover {
    background: #ff854d;
    transform: scale(1.05);
    color: #fff;
}

/* =========================================
   2. 电脑/平板端样式（屏幕宽度 > 991px 时生效）
   电脑端策略：
   - 强制对齐
   - 限制行数
   - 鼠标悬停展开
   (991px 对应你的 col-lg 分界线)
   ========================================= */
@media (min-width: 992px) {
    
    /* 强制卡片填满高度，实现对齐 */
    .qa-card {
        height: calc(100% - 20px);
    }

    /* 标题限制2行，高度固定，实现对齐 */
    .qa-title {
        min-height: 52px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* --- 交互特效：鼠标放上去展开 (仅电脑端) --- */
    
    /* 悬停时：解除卡片高度限制 */
    .qa-card:hover {
        height: auto;
        min-height: calc(100% - 20px); /* 保证不缩回去 */
        z-index: 10;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* 加深阴影提示状态变化 */
    }

    /* 悬停时：解除标题行数限制 */
    .qa-card:hover .qa-title {
        -webkit-line-clamp: unset;
        height: auto;
    }
}
@media (max-width: 768px) {
    .qa-card {
        padding: 15px;
    }
    .qa-icon-box {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-right: 15px;
    }
    .qa-title {
        font-size: 16px;
    }
    .qa-arrow {
        display: none;
    }
}

.solutions-grid {
margin-left: -15px;
margin-right: -15px;
}
.solutions-grid .col-lg-4 {
padding-left: 15px;
padding-right: 15px;
}

/* Card Main Style */
.solution-card {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
background: #fff;
border: 1px solid #eef2f6;
border-radius: 12px;
padding: 30px 25px;
text-decoration: none !important;
position: relative;
overflow: hidden;
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
border-top: 3px solid transparent;
}

.solution-card:hover {
transform: translateY(-7px);
box-shadow: 0 15px 30px rgba(17, 35, 90, 0.1);
border-color: #fff;
border-top-color: #ec6a34;
}

.solution-card .sc-content {
flex: 1;
}

.solution-card .sc-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
}

.solution-card .sc-icon {
width: 54px;
height: 54px;

flex-shrink: 0;

background: #f4f7fa;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
color: #11235a;
margin-right: 15px;
}



.solution-card:hover .sc-icon {
background: #11235a;
color: #fff;
}


.solution-card .sc-icon svg {
width: 26px;
height: 26px;
fill: currentColor;
transition: fill 0.3s ease;
max-width: none;
}


.solution-card .sc-tag {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.5px;
font-weight: 700;
padding: 5px 12px;
border-radius: 20px;
background: rgba(236, 106, 52, 0.08);
color: #ec6a34;
}


.solution-card .sc-title {
font-size: 20px;
font-weight: 700;
color: #11235a;
margin-bottom: 12px;
line-height: 1.3;
font-family: 'Poppins', sans-serif;


min-height: 52px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;

}

.solution-card:hover .sc-title {
color: #ec6a34;
}


.solution-card .sc-desc {
font-size: 15px;
color: #667;
line-height: 1.6;
margin-bottom: 25px;


min-height: 96px;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
}
/* Footer / CTA Button */
.solution-card .sc-footer {
border-top: 1px solid #f0f0f0;
padding-top: 15px;
display: flex;
align-items: center;
justify-content: space-between;
color: #11235a;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
}

.solution-card .sc-arrow {
width: 30px;
height: 30px;
border-radius: 50%;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
transition: all 0.3s ease;
color: #ccc;
}

.solution-card:hover .sc-arrow {
background: #ec6a34;
color: #fff;
transform: translateX(5px);
}

.title-single-qa h2 {
color: #02185a;
text-transform: capitalize;
font-size: 25px;
font-weight: 600;
margin-bottom: 25px;
line-height: 25px;
margin-top: 0;

