.feature-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
    width: 100%;
    /* max-width: 280px; */
}
.feature-item:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.left-feature {
    margin-left: auto; /* 左侧功能靠右对齐 */
    margin-right: 20px;
}
.right-feature {
    margin-right: auto; /* 右侧功能靠左对齐 */
    margin-left: 20px;
}
.feature-icon {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #0d6efd, #6c757d); */
    text-align: center;
    border-radius: 50%;
    line-height: 60px;
    font-size: 2rem !important;
    text-align: center;
    color: #fff !important;
}
.left-feature .feature-icon {
    margin-left: 15px;  /*左侧功能图标在右侧*/
    order: 1;
}
.right-feature .feature-icon {
    margin-right: 15px; /* 右侧功能图标在左侧 */
}
.feature-content {
    flex: 1;
}
.left-feature .feature-content {
    text-align: right; /* 左侧文字右对齐 */
}
.right-feature .feature-content {
    text-align: left; /* 右侧文字左对齐 */
}
.center-image {
    width: 200px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 1;
}
.section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
    text-align: center;
}
.section-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #0d6efd, #6c757d);
}
.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}
@media (max-width: 992px) {
    .feature-item {
        max-width: 100%;
        margin: 0 auto 15px !important;
    }
    .left-feature .feature-content,
    .right-feature .feature-content {
        text-align: center;
    }
    .left-feature .feature-icon,
    .right-feature .feature-icon {
        margin: 0 15px;
    }
}

.feature-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 20px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.card-body {
    padding: 2rem;
    text-align: center;
}
.badge-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.75rem;
}

a {
    text-decoration: none !important;
}