/* 产品页面特定样式 */

/* 核心功能卡片样式 */
.features-section .card-title,
.features-section .card-text {
    text-align: center;
}

/* 应用场景卡片样式 */
.scenarios-section .scenario-card h3,
.scenarios-section .scenario-card p {
    text-align: center;
}

/* 确保卡片内容垂直居中 */
.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 场景卡片内容居中 */
.scenario-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 20px;
}