.section-pad {
    padding: 80px 0;
}

.service-card {
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .10) !important;
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-list li {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    margin-bottom: .65rem;
    color: #495057;
    line-height: 1.45;
}

.service-list i {
    margin-top: .18rem;
    flex-shrink: 0;
}

.mini-advantage {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .85rem 1rem;
    border-radius: 1rem;
    background: #f8f9fa;
    height: 100%;
    font-weight: 600;
    color: #343a40;
}

.mini-advantage i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-cta {
    background: linear-gradient(135deg, #212529 0%, #343a40 55%, #b7791f 100%);
}