/* 品牌优势 */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.service-card {
    flex: 0 0 calc((100% - (30px * 3)) / 4);
    padding: 40px;
    overflow: hidden;
    border-radius: 15px;
    background-color: #ffffff;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}
.service-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}
.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}


@media (max-width: 992px) {
    .services-grid {
        gap: 15px;
    }
    .service-card {
        flex: 0 0 calc((100% - (15px * 1)) / 2);
    }
}